1994-05-11 05:59:13 -03:00
|
|
|
|
1995-01-02 15:30:30 -04:00
|
|
|
/* Signal module -- many thanks to Lance Ellinghaus */
|
1994-05-11 05:59:13 -03:00
|
|
|
|
1997-04-09 16:24:53 -03:00
|
|
|
/* XXX Signals should be recorded per thread, now we have thread state. */
|
|
|
|
|
1994-09-14 10:32:22 -03:00
|
|
|
#include "Python.h"
|
2021-04-27 22:02:55 -03:00
|
|
|
#include "pycore_call.h" // _PyObject_Call()
|
|
|
|
#include "pycore_ceval.h" // _PyEval_SignalReceived()
|
2022-04-25 19:13:31 -03:00
|
|
|
#include "pycore_emscripten_signal.h" // _Py_CHECK_EMSCRIPTEN_SIGNALS
|
2021-10-13 10:03:35 -03:00
|
|
|
#include "pycore_fileutils.h" // _Py_BEGIN_SUPPRESS_IPH
|
2022-02-25 11:22:00 -04:00
|
|
|
#include "pycore_frame.h" // _PyInterpreterFrame
|
2021-04-27 22:02:55 -03:00
|
|
|
#include "pycore_moduleobject.h" // _PyModule_GetState()
|
|
|
|
#include "pycore_pyerrors.h" // _PyErr_SetString()
|
|
|
|
#include "pycore_pystate.h" // _PyThreadState_GET()
|
2023-07-04 06:41:43 -03:00
|
|
|
#include "pycore_signal.h" // _Py_RestoreSignals()
|
2018-10-30 11:14:25 -03:00
|
|
|
|
2013-02-10 15:56:49 -04:00
|
|
|
#ifndef MS_WINDOWS
|
2023-09-02 12:51:19 -03:00
|
|
|
# include "posixmodule.h" // _PyLong_FromUid()
|
2013-02-10 15:56:49 -04:00
|
|
|
#endif
|
2014-07-29 18:31:34 -03:00
|
|
|
#ifdef MS_WINDOWS
|
2023-09-02 12:51:19 -03:00
|
|
|
# include "socketmodule.h" // SOCKET_T
|
2014-07-29 18:31:34 -03:00
|
|
|
#endif
|
1994-05-11 05:59:13 -03:00
|
|
|
|
2023-10-27 17:56:12 -03:00
|
|
|
#ifdef HAVE_UNISTD_H
|
|
|
|
# include <unistd.h> // alarm()
|
|
|
|
#endif
|
2002-06-30 12:26:10 -03:00
|
|
|
#ifdef MS_WINDOWS
|
2021-04-27 22:02:55 -03:00
|
|
|
# ifdef HAVE_PROCESS_H
|
|
|
|
# include <process.h>
|
|
|
|
# endif
|
Merged revisions 78338,78345-78346,78561-78562,78566,78574,78581,78634,78660,78675 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r78338 | andrew.kuchling | 2010-02-22 15:04:02 -0600 (Mon, 22 Feb 2010) | 4 lines
Remove Tools/modulator, a reference to it in the docs, and a screenshot of it.
(I asked the BDFL first, and he approved removing it. The last actual bugfix
to Tools/modulator was in 2001; since then all changes have been search-and-replace:
string methods, whitespace fixes, etc.)
........
r78345 | andrew.kuchling | 2010-02-22 17:10:52 -0600 (Mon, 22 Feb 2010) | 1 line
#7706: DONT_HAVE_ERRNO_H is no longer defined by configure (after rev.46819).
........
r78346 | andrew.kuchling | 2010-02-22 17:12:00 -0600 (Mon, 22 Feb 2010) | 1 line
#7706: add include guards where they're missing; required for Windows CE
........
r78561 | andrew.kuchling | 2010-03-01 13:51:43 -0600 (Mon, 01 Mar 2010) | 1 line
#7191: describe more details of wbits parameter
........
r78562 | andrew.kuchling | 2010-03-01 14:11:57 -0600 (Mon, 01 Mar 2010) | 1 line
#7637: avoid repeated-concatenation antipattern in example
........
r78566 | barry.warsaw | 2010-03-01 15:46:51 -0600 (Mon, 01 Mar 2010) | 4 lines
Manually copy patch for bug 7250 from the release26-maint branch. I suck
because I did this in the wrong order and couldn't smack svnmerge into
submission.
........
r78574 | benjamin.peterson | 2010-03-01 17:25:13 -0600 (Mon, 01 Mar 2010) | 1 line
remove CVS id
........
r78581 | michael.foord | 2010-03-02 08:22:15 -0600 (Tue, 02 Mar 2010) | 1 line
Link correction in documentation.
........
r78634 | benjamin.peterson | 2010-03-03 15:28:25 -0600 (Wed, 03 Mar 2010) | 1 line
rephrase
........
r78660 | dirkjan.ochtman | 2010-03-04 13:21:53 -0600 (Thu, 04 Mar 2010) | 4 lines
Try to fix buildbot breakage from r78384.
Thanks bitdancer and briancurtin for the help.
........
r78675 | florent.xicluna | 2010-03-04 19:12:14 -0600 (Thu, 04 Mar 2010) | 2 lines
These line should not be there.
........
2010-03-21 19:36:19 -03:00
|
|
|
#endif
|
1997-04-09 16:24:53 -03:00
|
|
|
|
Merged revisions 78338,78345-78346,78561-78562,78566,78574,78581,78634,78660,78675 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r78338 | andrew.kuchling | 2010-02-22 15:04:02 -0600 (Mon, 22 Feb 2010) | 4 lines
Remove Tools/modulator, a reference to it in the docs, and a screenshot of it.
(I asked the BDFL first, and he approved removing it. The last actual bugfix
to Tools/modulator was in 2001; since then all changes have been search-and-replace:
string methods, whitespace fixes, etc.)
........
r78345 | andrew.kuchling | 2010-02-22 17:10:52 -0600 (Mon, 22 Feb 2010) | 1 line
#7706: DONT_HAVE_ERRNO_H is no longer defined by configure (after rev.46819).
........
r78346 | andrew.kuchling | 2010-02-22 17:12:00 -0600 (Mon, 22 Feb 2010) | 1 line
#7706: add include guards where they're missing; required for Windows CE
........
r78561 | andrew.kuchling | 2010-03-01 13:51:43 -0600 (Mon, 01 Mar 2010) | 1 line
#7191: describe more details of wbits parameter
........
r78562 | andrew.kuchling | 2010-03-01 14:11:57 -0600 (Mon, 01 Mar 2010) | 1 line
#7637: avoid repeated-concatenation antipattern in example
........
r78566 | barry.warsaw | 2010-03-01 15:46:51 -0600 (Mon, 01 Mar 2010) | 4 lines
Manually copy patch for bug 7250 from the release26-maint branch. I suck
because I did this in the wrong order and couldn't smack svnmerge into
submission.
........
r78574 | benjamin.peterson | 2010-03-01 17:25:13 -0600 (Mon, 01 Mar 2010) | 1 line
remove CVS id
........
r78581 | michael.foord | 2010-03-02 08:22:15 -0600 (Tue, 02 Mar 2010) | 1 line
Link correction in documentation.
........
r78634 | benjamin.peterson | 2010-03-03 15:28:25 -0600 (Wed, 03 Mar 2010) | 1 line
rephrase
........
r78660 | dirkjan.ochtman | 2010-03-04 13:21:53 -0600 (Thu, 04 Mar 2010) | 4 lines
Try to fix buildbot breakage from r78384.
Thanks bitdancer and briancurtin for the help.
........
r78675 | florent.xicluna | 2010-03-04 19:12:14 -0600 (Thu, 04 Mar 2010) | 2 lines
These line should not be there.
........
2010-03-21 19:36:19 -03:00
|
|
|
#ifdef HAVE_SIGNAL_H
|
2023-09-02 12:51:19 -03:00
|
|
|
# include <signal.h> // sigaction()
|
Merged revisions 78338,78345-78346,78561-78562,78566,78574,78581,78634,78660,78675 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r78338 | andrew.kuchling | 2010-02-22 15:04:02 -0600 (Mon, 22 Feb 2010) | 4 lines
Remove Tools/modulator, a reference to it in the docs, and a screenshot of it.
(I asked the BDFL first, and he approved removing it. The last actual bugfix
to Tools/modulator was in 2001; since then all changes have been search-and-replace:
string methods, whitespace fixes, etc.)
........
r78345 | andrew.kuchling | 2010-02-22 17:10:52 -0600 (Mon, 22 Feb 2010) | 1 line
#7706: DONT_HAVE_ERRNO_H is no longer defined by configure (after rev.46819).
........
r78346 | andrew.kuchling | 2010-02-22 17:12:00 -0600 (Mon, 22 Feb 2010) | 1 line
#7706: add include guards where they're missing; required for Windows CE
........
r78561 | andrew.kuchling | 2010-03-01 13:51:43 -0600 (Mon, 01 Mar 2010) | 1 line
#7191: describe more details of wbits parameter
........
r78562 | andrew.kuchling | 2010-03-01 14:11:57 -0600 (Mon, 01 Mar 2010) | 1 line
#7637: avoid repeated-concatenation antipattern in example
........
r78566 | barry.warsaw | 2010-03-01 15:46:51 -0600 (Mon, 01 Mar 2010) | 4 lines
Manually copy patch for bug 7250 from the release26-maint branch. I suck
because I did this in the wrong order and couldn't smack svnmerge into
submission.
........
r78574 | benjamin.peterson | 2010-03-01 17:25:13 -0600 (Mon, 01 Mar 2010) | 1 line
remove CVS id
........
r78581 | michael.foord | 2010-03-02 08:22:15 -0600 (Tue, 02 Mar 2010) | 1 line
Link correction in documentation.
........
r78634 | benjamin.peterson | 2010-03-03 15:28:25 -0600 (Wed, 03 Mar 2010) | 1 line
rephrase
........
r78660 | dirkjan.ochtman | 2010-03-04 13:21:53 -0600 (Thu, 04 Mar 2010) | 4 lines
Try to fix buildbot breakage from r78384.
Thanks bitdancer and briancurtin for the help.
........
r78675 | florent.xicluna | 2010-03-04 19:12:14 -0600 (Thu, 04 Mar 2010) | 2 lines
These line should not be there.
........
2010-03-21 19:36:19 -03:00
|
|
|
#endif
|
2019-11-20 00:39:14 -04:00
|
|
|
#ifdef HAVE_SYS_SYSCALL_H
|
2023-09-02 12:51:19 -03:00
|
|
|
# include <sys/syscall.h> // __NR_pidfd_send_signal
|
2019-11-20 00:39:14 -04:00
|
|
|
#endif
|
Merged revisions 78338,78345-78346,78561-78562,78566,78574,78581,78634,78660,78675 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r78338 | andrew.kuchling | 2010-02-22 15:04:02 -0600 (Mon, 22 Feb 2010) | 4 lines
Remove Tools/modulator, a reference to it in the docs, and a screenshot of it.
(I asked the BDFL first, and he approved removing it. The last actual bugfix
to Tools/modulator was in 2001; since then all changes have been search-and-replace:
string methods, whitespace fixes, etc.)
........
r78345 | andrew.kuchling | 2010-02-22 17:10:52 -0600 (Mon, 22 Feb 2010) | 1 line
#7706: DONT_HAVE_ERRNO_H is no longer defined by configure (after rev.46819).
........
r78346 | andrew.kuchling | 2010-02-22 17:12:00 -0600 (Mon, 22 Feb 2010) | 1 line
#7706: add include guards where they're missing; required for Windows CE
........
r78561 | andrew.kuchling | 2010-03-01 13:51:43 -0600 (Mon, 01 Mar 2010) | 1 line
#7191: describe more details of wbits parameter
........
r78562 | andrew.kuchling | 2010-03-01 14:11:57 -0600 (Mon, 01 Mar 2010) | 1 line
#7637: avoid repeated-concatenation antipattern in example
........
r78566 | barry.warsaw | 2010-03-01 15:46:51 -0600 (Mon, 01 Mar 2010) | 4 lines
Manually copy patch for bug 7250 from the release26-maint branch. I suck
because I did this in the wrong order and couldn't smack svnmerge into
submission.
........
r78574 | benjamin.peterson | 2010-03-01 17:25:13 -0600 (Mon, 01 Mar 2010) | 1 line
remove CVS id
........
r78581 | michael.foord | 2010-03-02 08:22:15 -0600 (Tue, 02 Mar 2010) | 1 line
Link correction in documentation.
........
r78634 | benjamin.peterson | 2010-03-03 15:28:25 -0600 (Wed, 03 Mar 2010) | 1 line
rephrase
........
r78660 | dirkjan.ochtman | 2010-03-04 13:21:53 -0600 (Thu, 04 Mar 2010) | 4 lines
Try to fix buildbot breakage from r78384.
Thanks bitdancer and briancurtin for the help.
........
r78675 | florent.xicluna | 2010-03-04 19:12:14 -0600 (Thu, 04 Mar 2010) | 2 lines
These line should not be there.
........
2010-03-21 19:36:19 -03:00
|
|
|
#ifdef HAVE_SYS_STAT_H
|
2021-04-27 22:02:55 -03:00
|
|
|
# include <sys/stat.h>
|
Merged revisions 78338,78345-78346,78561-78562,78566,78574,78581,78634,78660,78675 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r78338 | andrew.kuchling | 2010-02-22 15:04:02 -0600 (Mon, 22 Feb 2010) | 4 lines
Remove Tools/modulator, a reference to it in the docs, and a screenshot of it.
(I asked the BDFL first, and he approved removing it. The last actual bugfix
to Tools/modulator was in 2001; since then all changes have been search-and-replace:
string methods, whitespace fixes, etc.)
........
r78345 | andrew.kuchling | 2010-02-22 17:10:52 -0600 (Mon, 22 Feb 2010) | 1 line
#7706: DONT_HAVE_ERRNO_H is no longer defined by configure (after rev.46819).
........
r78346 | andrew.kuchling | 2010-02-22 17:12:00 -0600 (Mon, 22 Feb 2010) | 1 line
#7706: add include guards where they're missing; required for Windows CE
........
r78561 | andrew.kuchling | 2010-03-01 13:51:43 -0600 (Mon, 01 Mar 2010) | 1 line
#7191: describe more details of wbits parameter
........
r78562 | andrew.kuchling | 2010-03-01 14:11:57 -0600 (Mon, 01 Mar 2010) | 1 line
#7637: avoid repeated-concatenation antipattern in example
........
r78566 | barry.warsaw | 2010-03-01 15:46:51 -0600 (Mon, 01 Mar 2010) | 4 lines
Manually copy patch for bug 7250 from the release26-maint branch. I suck
because I did this in the wrong order and couldn't smack svnmerge into
submission.
........
r78574 | benjamin.peterson | 2010-03-01 17:25:13 -0600 (Mon, 01 Mar 2010) | 1 line
remove CVS id
........
r78581 | michael.foord | 2010-03-02 08:22:15 -0600 (Tue, 02 Mar 2010) | 1 line
Link correction in documentation.
........
r78634 | benjamin.peterson | 2010-03-03 15:28:25 -0600 (Wed, 03 Mar 2010) | 1 line
rephrase
........
r78660 | dirkjan.ochtman | 2010-03-04 13:21:53 -0600 (Thu, 04 Mar 2010) | 4 lines
Try to fix buildbot breakage from r78384.
Thanks bitdancer and briancurtin for the help.
........
r78675 | florent.xicluna | 2010-03-04 19:12:14 -0600 (Thu, 04 Mar 2010) | 2 lines
These line should not be there.
........
2010-03-21 19:36:19 -03:00
|
|
|
#endif
|
2008-03-24 11:05:07 -03:00
|
|
|
#ifdef HAVE_SYS_TIME_H
|
2023-09-02 12:51:19 -03:00
|
|
|
# include <sys/time.h> // setitimer()
|
2008-03-24 11:05:07 -03:00
|
|
|
#endif
|
Merged revisions 59565-59594 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r59568 | facundo.batista | 2007-12-19 13:53:01 +0100 (Wed, 19 Dec 2007) | 3 lines
Some minor cleanups. Thanks Mark Dickinson.
........
r59573 | raymond.hettinger | 2007-12-19 19:13:31 +0100 (Wed, 19 Dec 2007) | 1 line
Fix issue 1661: Flags argument silently ignored in re functions with compiled regexes.
........
r59574 | guido.van.rossum | 2007-12-19 20:41:06 +0100 (Wed, 19 Dec 2007) | 7 lines
Patch #1583 by Adam Olsen.
This adds signal.set_wakeup_fd(fd) which sets a file descriptor to
which a zero byte will be written whenever a C exception handler runs.
I added a simple C API as well, PySignal_SetWakeupFd(fd).
........
r59575 | raymond.hettinger | 2007-12-19 23:14:34 +0100 (Wed, 19 Dec 2007) | 1 line
Bigger range for non-extended opargs.
........
r59576 | guido.van.rossum | 2007-12-19 23:51:13 +0100 (Wed, 19 Dec 2007) | 5 lines
Patch #1549 by Thomas Herve.
This changes the rules for when __hash__ is inherited slightly,
by allowing it to be inherited when one or more of __lt__, __le__,
__gt__, __ge__ are overridden, as long as __eq__ and __ne__ aren't.
........
r59577 | raymond.hettinger | 2007-12-20 02:25:05 +0100 (Thu, 20 Dec 2007) | 1 line
Add comments
........
r59578 | brett.cannon | 2007-12-20 11:09:52 +0100 (Thu, 20 Dec 2007) | 3 lines
Add tests for the warnings module; specifically formatwarning and showwarning.
Still need tests for warn_explicit and simplefilter.
........
r59582 | guido.van.rossum | 2007-12-20 18:28:10 +0100 (Thu, 20 Dec 2007) | 2 lines
Patch #1672 by Joseph Armbruster. Use tempdir() to get a temporary directory.
........
r59584 | georg.brandl | 2007-12-20 22:03:02 +0100 (Thu, 20 Dec 2007) | 2 lines
Fix refleak introduced in r59576.
........
r59586 | guido.van.rossum | 2007-12-21 00:48:28 +0100 (Fri, 21 Dec 2007) | 4 lines
Improve performance of built-in any()/all() by avoiding PyIter_Next() --
using a trick found in ifilter().
Feel free to backport to 2.5.
........
r59591 | andrew.kuchling | 2007-12-22 18:27:02 +0100 (Sat, 22 Dec 2007) | 1 line
Add item
........
2007-12-24 04:52:31 -04:00
|
|
|
|
2011-04-30 10:21:58 -03:00
|
|
|
#if defined(HAVE_PTHREAD_SIGMASK) && !defined(HAVE_BROKEN_PTHREAD_SIGMASK)
|
|
|
|
# define PYPTHREAD_SIGMASK
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if defined(PYPTHREAD_SIGMASK) && defined(HAVE_PTHREAD_H)
|
|
|
|
# include <pthread.h>
|
|
|
|
#endif
|
|
|
|
|
1994-06-23 08:25:45 -03:00
|
|
|
#ifndef SIG_ERR
|
2021-04-27 22:02:55 -03:00
|
|
|
# define SIG_ERR ((PyOS_sighandler_t)(-1))
|
1994-06-23 08:25:45 -03:00
|
|
|
#endif
|
|
|
|
|
2015-05-16 08:14:49 -03:00
|
|
|
#include "clinic/signalmodule.c.h"
|
|
|
|
|
|
|
|
/*[clinic input]
|
|
|
|
module signal
|
|
|
|
[clinic start generated code]*/
|
|
|
|
/*[clinic end generated code: output=da39a3ee5e6b4b0d input=b0301a3bde5fe9d3]*/
|
|
|
|
|
2021-11-25 07:28:41 -04:00
|
|
|
#ifdef HAVE_SETSIG_T
|
|
|
|
|
2018-05-08 01:48:50 -03:00
|
|
|
/*[python input]
|
|
|
|
|
|
|
|
class sigset_t_converter(CConverter):
|
|
|
|
type = 'sigset_t'
|
|
|
|
converter = '_Py_Sigset_Converter'
|
|
|
|
|
|
|
|
[python start generated code]*/
|
|
|
|
/*[python end generated code: output=da39a3ee5e6b4b0d input=b5689d14466b6823]*/
|
2021-11-25 07:28:41 -04:00
|
|
|
#endif
|
1995-01-02 15:30:30 -04:00
|
|
|
|
1994-06-23 08:25:45 -03:00
|
|
|
/*
|
|
|
|
NOTES ON THE INTERACTION BETWEEN SIGNALS AND THREADS
|
|
|
|
|
2019-05-09 22:28:57 -03:00
|
|
|
We want the following semantics:
|
1994-06-23 08:25:45 -03:00
|
|
|
|
|
|
|
- only the main thread can set a signal handler
|
2019-05-09 22:28:57 -03:00
|
|
|
- only the main thread runs the signal handler
|
|
|
|
- signals can be delivered to any thread
|
1994-06-23 08:25:45 -03:00
|
|
|
- any thread can get a signal handler
|
|
|
|
|
|
|
|
I.e. we don't support "synchronous signals" like SIGFPE (catching
|
|
|
|
this doesn't make much sense in Python anyway) nor do we support
|
|
|
|
signals as a means of inter-thread communication, since not all
|
|
|
|
thread implementations support that (at least our thread library
|
|
|
|
doesn't).
|
|
|
|
|
|
|
|
We still have the problem that in some implementations signals
|
|
|
|
generated by the keyboard (e.g. SIGINT) are delivered to all
|
|
|
|
threads (e.g. SGI), while in others (e.g. Solaris) such signals are
|
2019-05-09 22:28:57 -03:00
|
|
|
delivered to one random thread. On Linux, signals are delivered to
|
|
|
|
the main thread (unless the main thread is blocking the signal, for
|
|
|
|
example because it's already handling the same signal). Since we
|
|
|
|
allow signals to be delivered to any thread, this works fine. The
|
|
|
|
only oddity is that the thread executing the Python signal handler
|
|
|
|
may not be the thread that received the signal.
|
1994-06-23 08:25:45 -03:00
|
|
|
*/
|
|
|
|
|
2022-12-12 19:50:19 -04:00
|
|
|
#define Handlers _PyRuntime.signals.handlers
|
|
|
|
#define wakeup _PyRuntime.signals.wakeup
|
|
|
|
#define is_tripped _PyRuntime.signals.is_tripped
|
2021-04-27 22:02:55 -03:00
|
|
|
|
|
|
|
// State shared by all Python interpreters
|
2022-12-12 19:50:19 -04:00
|
|
|
typedef struct _signals_runtime_state signal_state_t;
|
|
|
|
#define signal_global_state _PyRuntime.signals
|
2011-11-21 16:26:56 -04:00
|
|
|
|
2020-11-17 13:15:20 -04:00
|
|
|
#if defined(HAVE_GETITIMER) || defined(HAVE_SETITIMER)
|
2021-04-27 22:02:55 -03:00
|
|
|
# define PYHAVE_ITIMER_ERROR
|
2020-11-17 13:15:20 -04:00
|
|
|
#endif
|
2008-03-24 10:39:54 -03:00
|
|
|
|
2021-04-27 22:02:55 -03:00
|
|
|
typedef struct {
|
|
|
|
PyObject *default_handler; // borrowed ref (signal_global_state)
|
|
|
|
PyObject *ignore_handler; // borrowed ref (signal_global_state)
|
|
|
|
#ifdef PYHAVE_ITIMER_ERROR
|
|
|
|
PyObject *itimer_error;
|
|
|
|
#endif
|
2022-01-27 16:21:50 -04:00
|
|
|
PyTypeObject *siginfo_type;
|
2021-04-27 22:02:55 -03:00
|
|
|
} _signal_module_state;
|
|
|
|
|
|
|
|
|
2021-03-11 18:35:45 -04:00
|
|
|
Py_LOCAL_INLINE(PyObject *)
|
2021-04-27 22:02:55 -03:00
|
|
|
get_handler(int i)
|
|
|
|
{
|
2023-10-09 20:26:29 -03:00
|
|
|
return (PyObject *)_Py_atomic_load_ptr(&Handlers[i].func);
|
2021-03-11 18:35:45 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
Py_LOCAL_INLINE(void)
|
2021-04-27 22:02:55 -03:00
|
|
|
set_handler(int i, PyObject* func)
|
|
|
|
{
|
2023-10-09 20:26:29 -03:00
|
|
|
/* Store func with atomic operation to ensure
|
|
|
|
that PyErr_SetInterrupt is async-signal-safe. */
|
|
|
|
_Py_atomic_store_ptr(&Handlers[i].func, func);
|
2021-03-11 18:35:45 -04:00
|
|
|
}
|
|
|
|
|
2021-04-27 22:02:55 -03:00
|
|
|
|
|
|
|
static inline _signal_module_state*
|
|
|
|
get_signal_state(PyObject *module)
|
|
|
|
{
|
|
|
|
void *state = _PyModule_GetState(module);
|
|
|
|
assert(state != NULL);
|
|
|
|
return (_signal_module_state *)state;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2022-03-08 14:22:32 -04:00
|
|
|
static inline int
|
|
|
|
compare_handler(PyObject *func, PyObject *dfl_ign_handler)
|
|
|
|
{
|
2023-03-08 03:59:39 -04:00
|
|
|
// See https://github.com/python/cpython/pull/102399
|
|
|
|
if (func == NULL || dfl_ign_handler == NULL) {
|
|
|
|
return 0;
|
|
|
|
}
|
2022-03-08 14:22:32 -04:00
|
|
|
assert(PyLong_CheckExact(dfl_ign_handler));
|
|
|
|
if (!PyLong_CheckExact(func)) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
// Assume that comparison of two PyLong objects will never fail.
|
|
|
|
return PyObject_RichCompareBool(func, dfl_ign_handler, Py_EQ) == 1;
|
|
|
|
}
|
|
|
|
|
2022-06-20 08:34:40 -03:00
|
|
|
#ifdef HAVE_SETITIMER
|
|
|
|
/* auxiliary function for setitimer */
|
2017-10-13 17:49:43 -03:00
|
|
|
static int
|
|
|
|
timeval_from_double(PyObject *obj, struct timeval *tv)
|
2008-03-24 10:39:54 -03:00
|
|
|
{
|
2017-10-13 17:49:43 -03:00
|
|
|
if (obj == NULL) {
|
|
|
|
tv->tv_sec = 0;
|
|
|
|
tv->tv_usec = 0;
|
|
|
|
return 0;
|
2017-06-30 05:01:05 -03:00
|
|
|
}
|
2017-10-13 17:49:43 -03:00
|
|
|
|
|
|
|
_PyTime_t t;
|
|
|
|
if (_PyTime_FromSecondsObject(&t, obj, _PyTime_ROUND_CEILING) < 0) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
return _PyTime_AsTimeval(t, tv, _PyTime_ROUND_CEILING);
|
2008-03-24 10:39:54 -03:00
|
|
|
}
|
2022-06-20 08:34:40 -03:00
|
|
|
#endif
|
2008-03-24 10:39:54 -03:00
|
|
|
|
2022-06-20 08:34:40 -03:00
|
|
|
#if defined(HAVE_SETITIMER) || defined(HAVE_GETITIMER)
|
|
|
|
/* auxiliary functions for get/setitimer */
|
2008-10-02 16:56:01 -03:00
|
|
|
Py_LOCAL_INLINE(double)
|
2008-03-24 10:39:54 -03:00
|
|
|
double_from_timeval(struct timeval *tv)
|
|
|
|
{
|
|
|
|
return tv->tv_sec + (double)(tv->tv_usec / 1000000.0);
|
|
|
|
}
|
|
|
|
|
|
|
|
static PyObject *
|
|
|
|
itimer_retval(struct itimerval *iv)
|
|
|
|
{
|
|
|
|
PyObject *r, *v;
|
|
|
|
|
|
|
|
r = PyTuple_New(2);
|
|
|
|
if (r == NULL)
|
2016-09-17 00:26:16 -03:00
|
|
|
return NULL;
|
2008-03-24 10:39:54 -03:00
|
|
|
|
|
|
|
if(!(v = PyFloat_FromDouble(double_from_timeval(&iv->it_value)))) {
|
2016-09-17 00:26:16 -03:00
|
|
|
Py_DECREF(r);
|
|
|
|
return NULL;
|
2008-03-24 10:39:54 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
PyTuple_SET_ITEM(r, 0, v);
|
|
|
|
|
|
|
|
if(!(v = PyFloat_FromDouble(double_from_timeval(&iv->it_interval)))) {
|
2016-09-17 00:26:16 -03:00
|
|
|
Py_DECREF(r);
|
|
|
|
return NULL;
|
2008-03-24 10:39:54 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
PyTuple_SET_ITEM(r, 1, v);
|
|
|
|
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
#endif
|
1994-05-11 05:59:13 -03:00
|
|
|
|
2020-07-12 13:15:20 -03:00
|
|
|
/*[clinic input]
|
|
|
|
signal.default_int_handler
|
|
|
|
signalnum: int
|
|
|
|
frame: object
|
|
|
|
/
|
|
|
|
|
|
|
|
The default handler for SIGINT installed by Python.
|
|
|
|
|
|
|
|
It raises KeyboardInterrupt.
|
|
|
|
[clinic start generated code]*/
|
|
|
|
|
1994-09-07 11:32:49 -03:00
|
|
|
static PyObject *
|
2020-07-12 13:15:20 -03:00
|
|
|
signal_default_int_handler_impl(PyObject *module, int signalnum,
|
|
|
|
PyObject *frame)
|
|
|
|
/*[clinic end generated code: output=bb11c2eb115ace4e input=efcd4a56a207acfd]*/
|
1994-05-11 05:59:13 -03:00
|
|
|
{
|
2010-05-09 12:52:27 -03:00
|
|
|
PyErr_SetNone(PyExc_KeyboardInterrupt);
|
|
|
|
return NULL;
|
1995-03-10 11:13:48 -04:00
|
|
|
}
|
|
|
|
|
2000-07-22 20:49:30 -03:00
|
|
|
|
2013-08-17 15:27:56 -03:00
|
|
|
static int
|
2014-07-29 18:31:34 -03:00
|
|
|
report_wakeup_write_error(void *data)
|
2013-08-17 15:27:56 -03:00
|
|
|
{
|
|
|
|
int save_errno = errno;
|
2016-09-06 17:47:26 -03:00
|
|
|
errno = (int) (intptr_t) data;
|
2023-02-24 17:43:03 -04:00
|
|
|
PyObject *exc = PyErr_GetRaisedException();
|
2013-08-17 15:27:56 -03:00
|
|
|
PyErr_SetFromErrno(PyExc_OSError);
|
2022-10-12 12:26:58 -03:00
|
|
|
_PyErr_WriteUnraisableMsg("when trying to write to the signal wakeup fd",
|
|
|
|
NULL);
|
2023-02-24 17:43:03 -04:00
|
|
|
PyErr_SetRaisedException(exc);
|
2013-08-17 15:27:56 -03:00
|
|
|
errno = save_errno;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-07-29 18:31:34 -03:00
|
|
|
#ifdef MS_WINDOWS
|
|
|
|
static int
|
2017-12-18 00:10:18 -04:00
|
|
|
report_wakeup_send_error(void* data)
|
2014-07-29 18:31:34 -03:00
|
|
|
{
|
2022-10-12 12:26:58 -03:00
|
|
|
int send_errno = (int) (intptr_t) data;
|
|
|
|
|
2023-02-24 17:43:03 -04:00
|
|
|
PyObject *exc = PyErr_GetRaisedException();
|
2017-12-18 00:10:18 -04:00
|
|
|
/* PyErr_SetExcFromWindowsErr() invokes FormatMessage() which
|
|
|
|
recognizes the error codes used by both GetLastError() and
|
|
|
|
WSAGetLastError */
|
2022-10-12 12:26:58 -03:00
|
|
|
PyErr_SetExcFromWindowsErr(PyExc_OSError, send_errno);
|
|
|
|
_PyErr_WriteUnraisableMsg("when trying to send to the signal wakeup fd", NULL);
|
2023-02-24 17:43:03 -04:00
|
|
|
PyErr_SetRaisedException(exc);
|
2014-07-29 18:31:34 -03:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
#endif /* MS_WINDOWS */
|
|
|
|
|
2011-04-18 11:25:56 -03:00
|
|
|
static void
|
|
|
|
trip_signal(int sig_num)
|
|
|
|
{
|
2023-10-09 20:26:29 -03:00
|
|
|
_Py_atomic_store_int(&Handlers[sig_num].tripped, 1);
|
2014-07-29 18:31:34 -03:00
|
|
|
|
2017-06-28 18:29:29 -03:00
|
|
|
/* Set is_tripped after setting .tripped, as it gets
|
|
|
|
cleared in PyErr_CheckSignals() before .tripped. */
|
2023-10-09 20:26:29 -03:00
|
|
|
_Py_atomic_store_int(&is_tripped, 1);
|
2017-07-17 07:25:19 -03:00
|
|
|
|
2020-04-08 18:35:05 -03:00
|
|
|
/* Signals are always handled by the main interpreter */
|
2022-01-12 19:28:46 -04:00
|
|
|
PyInterpreterState *interp = _PyInterpreterState_Main();
|
2020-03-18 15:28:53 -03:00
|
|
|
|
2017-07-17 07:25:19 -03:00
|
|
|
/* Notify ceval.c */
|
2020-04-08 18:35:05 -03:00
|
|
|
_PyEval_SignalReceived(interp);
|
2017-05-16 18:12:11 -03:00
|
|
|
|
|
|
|
/* And then write to the wakeup fd *after* setting all the globals and
|
2017-06-28 18:29:29 -03:00
|
|
|
doing the _PyEval_SignalReceived. We used to write to the wakeup fd
|
|
|
|
and then set the flag, but this allowed the following sequence of events
|
|
|
|
(especially on windows, where trip_signal may run in a new thread):
|
2017-05-16 18:12:11 -03:00
|
|
|
|
2017-12-18 00:10:18 -04:00
|
|
|
- main thread blocks on select([wakeup.fd], ...)
|
2017-05-16 18:12:11 -03:00
|
|
|
- signal arrives
|
|
|
|
- trip_signal writes to the wakeup fd
|
|
|
|
- the main thread wakes up
|
|
|
|
- the main thread checks the signal flags, sees that they're unset
|
|
|
|
- the main thread empties the wakeup fd
|
|
|
|
- the main thread goes back to sleep
|
|
|
|
- trip_signal sets the flags to request the Python-level signal handler
|
|
|
|
be run
|
|
|
|
- the main thread doesn't notice, because it's asleep
|
|
|
|
|
|
|
|
See bpo-30038 for more details.
|
|
|
|
*/
|
|
|
|
|
2022-12-12 19:50:19 -04:00
|
|
|
int fd = wakeup.fd;
|
2014-07-29 18:31:34 -03:00
|
|
|
if (fd != INVALID_FD) {
|
2020-11-17 13:57:32 -04:00
|
|
|
unsigned char byte = (unsigned char)sig_num;
|
2014-07-29 18:31:34 -03:00
|
|
|
#ifdef MS_WINDOWS
|
|
|
|
if (wakeup.use_send) {
|
2020-11-17 13:57:32 -04:00
|
|
|
Py_ssize_t rc = send(fd, &byte, 1, 0);
|
2017-12-18 00:10:18 -04:00
|
|
|
|
|
|
|
if (rc < 0) {
|
|
|
|
int last_error = GetLastError();
|
|
|
|
if (wakeup.warn_on_full_buffer ||
|
|
|
|
last_error != WSAEWOULDBLOCK)
|
|
|
|
{
|
2020-03-18 22:41:21 -03:00
|
|
|
/* _PyEval_AddPendingCall() isn't signal-safe, but we
|
2017-12-18 00:10:18 -04:00
|
|
|
still use it for this exceptional case. */
|
2020-04-08 18:35:05 -03:00
|
|
|
_PyEval_AddPendingCall(interp,
|
2019-05-10 18:39:09 -03:00
|
|
|
report_wakeup_send_error,
|
2023-06-13 18:02:19 -03:00
|
|
|
(void *)(intptr_t) last_error,
|
2023-10-09 10:39:51 -03:00
|
|
|
_Py_PENDING_MAINTHREADONLY);
|
2017-12-18 00:10:18 -04:00
|
|
|
}
|
2014-07-29 18:31:34 -03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
#endif
|
|
|
|
{
|
2015-04-01 13:35:22 -03:00
|
|
|
/* _Py_write_noraise() retries write() if write() is interrupted by
|
|
|
|
a signal (fails with EINTR). */
|
2020-11-17 13:57:32 -04:00
|
|
|
Py_ssize_t rc = _Py_write_noraise(fd, &byte, 1);
|
2014-07-29 18:31:34 -03:00
|
|
|
|
|
|
|
if (rc < 0) {
|
2017-12-18 00:10:18 -04:00
|
|
|
if (wakeup.warn_on_full_buffer ||
|
|
|
|
(errno != EWOULDBLOCK && errno != EAGAIN))
|
|
|
|
{
|
2020-03-18 22:41:21 -03:00
|
|
|
/* _PyEval_AddPendingCall() isn't signal-safe, but we
|
2017-12-18 00:10:18 -04:00
|
|
|
still use it for this exceptional case. */
|
2020-04-08 18:35:05 -03:00
|
|
|
_PyEval_AddPendingCall(interp,
|
2019-05-10 18:39:09 -03:00
|
|
|
report_wakeup_write_error,
|
2023-06-13 18:02:19 -03:00
|
|
|
(void *)(intptr_t)errno,
|
2023-10-09 10:39:51 -03:00
|
|
|
_Py_PENDING_MAINTHREADONLY);
|
2017-12-18 00:10:18 -04:00
|
|
|
}
|
2014-07-29 18:31:34 -03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2011-04-18 11:25:56 -03:00
|
|
|
}
|
|
|
|
|
2000-07-23 18:18:09 -03:00
|
|
|
static void
|
2000-07-10 09:04:18 -03:00
|
|
|
signal_handler(int sig_num)
|
1994-05-11 05:59:13 -03:00
|
|
|
{
|
2010-11-05 16:47:27 -03:00
|
|
|
int save_errno = errno;
|
|
|
|
|
2019-05-09 22:28:57 -03:00
|
|
|
trip_signal(sig_num);
|
2010-11-05 16:47:27 -03:00
|
|
|
|
|
|
|
#ifndef HAVE_SIGACTION
|
1994-09-14 10:32:22 -03:00
|
|
|
#ifdef SIGCHLD
|
2010-11-05 16:47:27 -03:00
|
|
|
/* To avoid infinite recursion, this signal remains
|
|
|
|
reset until explicit re-instated.
|
|
|
|
Don't clear the 'func' field as it is our pointer
|
|
|
|
to the Python handler... */
|
|
|
|
if (sig_num != SIGCHLD)
|
1994-06-23 08:25:45 -03:00
|
|
|
#endif
|
2010-05-09 12:52:27 -03:00
|
|
|
/* If the handler was not set up with sigaction, reinstall it. See
|
2014-11-20 07:39:37 -04:00
|
|
|
* Python/pylifecycle.c for the implementation of PyOS_setsig which
|
2010-05-09 12:52:27 -03:00
|
|
|
* makes this true. See also issue8354. */
|
|
|
|
PyOS_setsig(sig_num, signal_handler);
|
2010-05-09 00:18:57 -03:00
|
|
|
#endif
|
2010-11-05 16:47:27 -03:00
|
|
|
|
|
|
|
/* Issue #10311: asynchronously executing signal handlers should not
|
|
|
|
mutate errno under the feet of unsuspecting C code. */
|
|
|
|
errno = save_errno;
|
2011-11-21 16:26:56 -04:00
|
|
|
|
|
|
|
#ifdef MS_WINDOWS
|
2021-04-27 22:02:55 -03:00
|
|
|
if (sig_num == SIGINT) {
|
|
|
|
signal_state_t *state = &signal_global_state;
|
2022-12-12 19:50:19 -04:00
|
|
|
SetEvent((HANDLE)state->sigint_event);
|
2021-04-27 22:02:55 -03:00
|
|
|
}
|
2011-11-21 16:26:56 -04:00
|
|
|
#endif
|
1994-05-11 05:59:13 -03:00
|
|
|
}
|
1994-09-07 11:32:49 -03:00
|
|
|
|
1995-03-10 11:13:48 -04:00
|
|
|
|
1997-08-22 17:42:00 -03:00
|
|
|
#ifdef HAVE_ALARM
|
2015-05-16 08:14:49 -03:00
|
|
|
|
|
|
|
/*[clinic input]
|
|
|
|
signal.alarm -> long
|
|
|
|
|
|
|
|
seconds: int
|
|
|
|
/
|
|
|
|
|
|
|
|
Arrange for SIGALRM to arrive after the given number of seconds.
|
|
|
|
[clinic start generated code]*/
|
|
|
|
|
|
|
|
static long
|
2016-07-07 11:35:15 -03:00
|
|
|
signal_alarm_impl(PyObject *module, int seconds)
|
|
|
|
/*[clinic end generated code: output=144232290814c298 input=0d5e97e0e6f39e86]*/
|
1994-08-01 08:34:53 -03:00
|
|
|
{
|
2010-05-09 12:52:27 -03:00
|
|
|
/* alarm() returns the number of seconds remaining */
|
2015-05-16 08:14:49 -03:00
|
|
|
return (long)alarm(seconds);
|
1994-08-01 08:34:53 -03:00
|
|
|
}
|
1998-06-28 13:54:49 -03:00
|
|
|
|
1995-03-10 11:13:48 -04:00
|
|
|
#endif
|
1994-09-07 11:32:49 -03:00
|
|
|
|
1997-08-22 17:42:00 -03:00
|
|
|
#ifdef HAVE_PAUSE
|
2015-05-16 08:14:49 -03:00
|
|
|
|
|
|
|
/*[clinic input]
|
|
|
|
signal.pause
|
|
|
|
|
|
|
|
Wait until a signal arrives.
|
|
|
|
[clinic start generated code]*/
|
|
|
|
|
1995-01-10 16:56:29 -04:00
|
|
|
static PyObject *
|
2016-07-07 11:35:15 -03:00
|
|
|
signal_pause_impl(PyObject *module)
|
|
|
|
/*[clinic end generated code: output=391656788b3c3929 input=f03de0f875752062]*/
|
1994-08-23 10:49:37 -03:00
|
|
|
{
|
2010-05-09 12:52:27 -03:00
|
|
|
Py_BEGIN_ALLOW_THREADS
|
|
|
|
(void)pause();
|
|
|
|
Py_END_ALLOW_THREADS
|
|
|
|
/* make sure that any exceptions that got raised are propagated
|
|
|
|
* back into Python
|
|
|
|
*/
|
|
|
|
if (PyErr_CheckSignals())
|
|
|
|
return NULL;
|
|
|
|
|
2015-05-16 08:14:49 -03:00
|
|
|
Py_RETURN_NONE;
|
1994-08-23 10:49:37 -03:00
|
|
|
}
|
1998-06-28 13:54:49 -03:00
|
|
|
|
1995-03-10 11:13:48 -04:00
|
|
|
#endif
|
1994-08-01 08:34:53 -03:00
|
|
|
|
2019-01-08 05:58:25 -04:00
|
|
|
/*[clinic input]
|
|
|
|
signal.raise_signal
|
|
|
|
|
|
|
|
signalnum: int
|
|
|
|
/
|
|
|
|
|
|
|
|
Send a signal to the executing process.
|
|
|
|
[clinic start generated code]*/
|
|
|
|
|
|
|
|
static PyObject *
|
|
|
|
signal_raise_signal_impl(PyObject *module, int signalnum)
|
|
|
|
/*[clinic end generated code: output=e2b014220aa6111d input=e90c0f9a42358de6]*/
|
|
|
|
{
|
|
|
|
int err;
|
|
|
|
Py_BEGIN_ALLOW_THREADS
|
|
|
|
_Py_BEGIN_SUPPRESS_IPH
|
|
|
|
err = raise(signalnum);
|
|
|
|
_Py_END_SUPPRESS_IPH
|
|
|
|
Py_END_ALLOW_THREADS
|
2019-05-10 18:39:09 -03:00
|
|
|
|
2019-01-08 05:58:25 -04:00
|
|
|
if (err) {
|
|
|
|
return PyErr_SetFromErrno(PyExc_OSError);
|
|
|
|
}
|
2022-04-20 22:14:57 -03:00
|
|
|
|
|
|
|
// If the current thread can handle signals, handle immediately
|
|
|
|
// the raised signal.
|
|
|
|
if (PyErr_CheckSignals()) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2019-01-08 05:58:25 -04:00
|
|
|
Py_RETURN_NONE;
|
|
|
|
}
|
2000-09-16 13:35:28 -03:00
|
|
|
|
2015-05-16 08:14:49 -03:00
|
|
|
/*[clinic input]
|
|
|
|
signal.signal
|
|
|
|
|
|
|
|
signalnum: int
|
|
|
|
handler: object
|
|
|
|
/
|
|
|
|
|
|
|
|
Set the action for the given signal.
|
|
|
|
|
|
|
|
The action can be SIG_DFL, SIG_IGN, or a callable Python object.
|
|
|
|
The previous action is returned. See getsignal() for possible return values.
|
|
|
|
|
|
|
|
*** IMPORTANT NOTICE ***
|
|
|
|
A signal handler function is called with two arguments:
|
|
|
|
the first is the signal number, the second is the interrupted stack frame.
|
|
|
|
[clinic start generated code]*/
|
|
|
|
|
1994-09-07 11:32:49 -03:00
|
|
|
static PyObject *
|
2016-07-07 11:35:15 -03:00
|
|
|
signal_signal_impl(PyObject *module, int signalnum, PyObject *handler)
|
|
|
|
/*[clinic end generated code: output=b44cfda43780f3a1 input=deee84af5fa0432c]*/
|
1994-05-11 05:59:13 -03:00
|
|
|
{
|
2021-04-27 22:02:55 -03:00
|
|
|
_signal_module_state *modstate = get_signal_state(module);
|
2010-05-09 12:52:27 -03:00
|
|
|
PyObject *old_handler;
|
|
|
|
void (*func)(int);
|
2010-08-06 16:27:32 -03:00
|
|
|
#ifdef MS_WINDOWS
|
2015-05-16 08:14:49 -03:00
|
|
|
/* Validate that signalnum is one of the allowable signals */
|
|
|
|
switch (signalnum) {
|
2010-09-06 13:04:10 -03:00
|
|
|
case SIGABRT: break;
|
2010-10-01 11:49:24 -03:00
|
|
|
#ifdef SIGBREAK
|
|
|
|
/* Issue #10003: SIGBREAK is not documented as permitted, but works
|
|
|
|
and corresponds to CTRL_BREAK_EVENT. */
|
|
|
|
case SIGBREAK: break;
|
|
|
|
#endif
|
2010-09-06 13:04:10 -03:00
|
|
|
case SIGFPE: break;
|
|
|
|
case SIGILL: break;
|
|
|
|
case SIGINT: break;
|
|
|
|
case SIGSEGV: break;
|
|
|
|
case SIGTERM: break;
|
|
|
|
default:
|
|
|
|
PyErr_SetString(PyExc_ValueError, "invalid signal value");
|
|
|
|
return NULL;
|
2010-08-06 16:27:32 -03:00
|
|
|
}
|
|
|
|
#endif
|
2019-05-24 08:43:55 -03:00
|
|
|
|
2020-03-26 18:28:11 -03:00
|
|
|
PyThreadState *tstate = _PyThreadState_GET();
|
2020-04-08 18:35:05 -03:00
|
|
|
if (!_Py_ThreadCanHandleSignals(tstate->interp)) {
|
2020-03-26 18:28:11 -03:00
|
|
|
_PyErr_SetString(tstate, PyExc_ValueError,
|
|
|
|
"signal only works in main thread "
|
|
|
|
"of the main interpreter");
|
2010-05-09 12:52:27 -03:00
|
|
|
return NULL;
|
|
|
|
}
|
2022-04-25 19:13:31 -03:00
|
|
|
if (signalnum < 1 || signalnum >= Py_NSIG) {
|
2020-03-26 18:28:11 -03:00
|
|
|
_PyErr_SetString(tstate, PyExc_ValueError,
|
|
|
|
"signal number out of range");
|
2010-05-09 12:52:27 -03:00
|
|
|
return NULL;
|
|
|
|
}
|
2022-03-08 14:22:32 -04:00
|
|
|
if (PyCallable_Check(handler)) {
|
|
|
|
func = signal_handler;
|
|
|
|
} else if (compare_handler(handler, modstate->ignore_handler)) {
|
2010-05-09 12:52:27 -03:00
|
|
|
func = SIG_IGN;
|
2022-03-08 14:22:32 -04:00
|
|
|
} else if (compare_handler(handler, modstate->default_handler)) {
|
2010-05-09 12:52:27 -03:00
|
|
|
func = SIG_DFL;
|
2022-03-08 14:22:32 -04:00
|
|
|
} else {
|
2020-03-26 18:28:11 -03:00
|
|
|
_PyErr_SetString(tstate, PyExc_TypeError,
|
|
|
|
"signal handler must be signal.SIG_IGN, "
|
|
|
|
"signal.SIG_DFL, or a callable object");
|
|
|
|
return NULL;
|
2010-05-09 12:52:27 -03:00
|
|
|
}
|
2020-03-26 18:28:11 -03:00
|
|
|
|
2017-11-03 15:58:46 -03:00
|
|
|
/* Check for pending signals before changing signal handler */
|
2020-03-26 18:28:11 -03:00
|
|
|
if (_PyErr_CheckSignalsTstate(tstate)) {
|
2017-11-03 15:58:46 -03:00
|
|
|
return NULL;
|
|
|
|
}
|
2015-05-16 08:14:49 -03:00
|
|
|
if (PyOS_setsig(signalnum, func) == SIG_ERR) {
|
2011-05-10 12:13:00 -03:00
|
|
|
PyErr_SetFromErrno(PyExc_OSError);
|
2010-05-09 12:52:27 -03:00
|
|
|
return NULL;
|
|
|
|
}
|
2020-03-26 18:28:11 -03:00
|
|
|
|
2021-03-11 18:35:45 -04:00
|
|
|
old_handler = get_handler(signalnum);
|
2021-04-27 22:02:55 -03:00
|
|
|
set_handler(signalnum, Py_NewRef(handler));
|
2020-03-26 18:28:11 -03:00
|
|
|
|
|
|
|
if (old_handler != NULL) {
|
2013-05-04 18:16:59 -03:00
|
|
|
return old_handler;
|
2020-03-26 18:28:11 -03:00
|
|
|
}
|
|
|
|
else {
|
2013-05-04 18:16:59 -03:00
|
|
|
Py_RETURN_NONE;
|
2020-03-26 18:28:11 -03:00
|
|
|
}
|
1994-05-11 05:59:13 -03:00
|
|
|
}
|
|
|
|
|
1998-06-28 13:54:49 -03:00
|
|
|
|
2015-05-16 08:14:49 -03:00
|
|
|
/*[clinic input]
|
|
|
|
signal.getsignal
|
|
|
|
|
|
|
|
signalnum: int
|
|
|
|
/
|
|
|
|
|
|
|
|
Return the current action for the given signal.
|
|
|
|
|
|
|
|
The return value can be:
|
|
|
|
SIG_IGN -- if the signal is being ignored
|
|
|
|
SIG_DFL -- if the default action for the signal is in effect
|
|
|
|
None -- if an unknown handler is in effect
|
|
|
|
anything else -- the callable Python object used as a handler
|
|
|
|
[clinic start generated code]*/
|
2000-09-16 13:35:28 -03:00
|
|
|
|
1994-09-07 11:32:49 -03:00
|
|
|
static PyObject *
|
2016-07-07 11:35:15 -03:00
|
|
|
signal_getsignal_impl(PyObject *module, int signalnum)
|
|
|
|
/*[clinic end generated code: output=35b3e0e796fd555e input=ac23a00f19dfa509]*/
|
1994-05-11 05:59:13 -03:00
|
|
|
{
|
2010-05-09 12:52:27 -03:00
|
|
|
PyObject *old_handler;
|
2022-04-25 19:13:31 -03:00
|
|
|
if (signalnum < 1 || signalnum >= Py_NSIG) {
|
2010-05-09 12:52:27 -03:00
|
|
|
PyErr_SetString(PyExc_ValueError,
|
|
|
|
"signal number out of range");
|
|
|
|
return NULL;
|
|
|
|
}
|
2021-03-11 18:35:45 -04:00
|
|
|
old_handler = get_handler(signalnum);
|
2013-05-04 18:16:59 -03:00
|
|
|
if (old_handler != NULL) {
|
2020-11-17 13:57:32 -04:00
|
|
|
return Py_NewRef(old_handler);
|
2013-05-04 18:16:59 -03:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
Py_RETURN_NONE;
|
|
|
|
}
|
1994-05-11 05:59:13 -03:00
|
|
|
}
|
|
|
|
|
2018-03-12 10:42:34 -03:00
|
|
|
|
|
|
|
/*[clinic input]
|
|
|
|
signal.strsignal
|
|
|
|
|
|
|
|
signalnum: int
|
|
|
|
/
|
|
|
|
|
|
|
|
Return the system description of the given signal.
|
|
|
|
|
2022-11-13 15:41:23 -04:00
|
|
|
Returns the description of signal *signalnum*, such as "Interrupt"
|
|
|
|
for :const:`SIGINT`. Returns :const:`None` if *signalnum* has no
|
|
|
|
description. Raises :exc:`ValueError` if *signalnum* is invalid.
|
2018-03-12 10:42:34 -03:00
|
|
|
[clinic start generated code]*/
|
|
|
|
|
|
|
|
static PyObject *
|
|
|
|
signal_strsignal_impl(PyObject *module, int signalnum)
|
2022-11-13 15:41:23 -04:00
|
|
|
/*[clinic end generated code: output=44e12e1e3b666261 input=238b335847778bc0]*/
|
2018-03-12 10:42:34 -03:00
|
|
|
{
|
2021-09-11 05:46:22 -03:00
|
|
|
const char *res;
|
2018-03-12 10:42:34 -03:00
|
|
|
|
2022-04-25 19:13:31 -03:00
|
|
|
if (signalnum < 1 || signalnum >= Py_NSIG) {
|
2018-03-12 10:42:34 -03:00
|
|
|
PyErr_SetString(PyExc_ValueError,
|
|
|
|
"signal number out of range");
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2018-08-23 10:27:19 -03:00
|
|
|
#ifndef HAVE_STRSIGNAL
|
2018-03-12 10:42:34 -03:00
|
|
|
switch (signalnum) {
|
2018-08-23 10:27:19 -03:00
|
|
|
/* Though being a UNIX, HP-UX does not provide strsignal(3). */
|
|
|
|
#ifndef MS_WINDOWS
|
|
|
|
case SIGHUP:
|
|
|
|
res = "Hangup";
|
|
|
|
break;
|
|
|
|
case SIGALRM:
|
|
|
|
res = "Alarm clock";
|
|
|
|
break;
|
|
|
|
case SIGPIPE:
|
|
|
|
res = "Broken pipe";
|
|
|
|
break;
|
|
|
|
case SIGQUIT:
|
|
|
|
res = "Quit";
|
|
|
|
break;
|
|
|
|
case SIGCHLD:
|
|
|
|
res = "Child exited";
|
|
|
|
break;
|
|
|
|
#endif
|
|
|
|
/* Custom redefinition of POSIX signals allowed on Windows. */
|
2018-03-12 10:42:34 -03:00
|
|
|
case SIGINT:
|
|
|
|
res = "Interrupt";
|
|
|
|
break;
|
|
|
|
case SIGILL:
|
|
|
|
res = "Illegal instruction";
|
|
|
|
break;
|
|
|
|
case SIGABRT:
|
|
|
|
res = "Aborted";
|
|
|
|
break;
|
|
|
|
case SIGFPE:
|
|
|
|
res = "Floating point exception";
|
|
|
|
break;
|
|
|
|
case SIGSEGV:
|
|
|
|
res = "Segmentation fault";
|
|
|
|
break;
|
|
|
|
case SIGTERM:
|
|
|
|
res = "Terminated";
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
Py_RETURN_NONE;
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
errno = 0;
|
|
|
|
res = strsignal(signalnum);
|
|
|
|
|
|
|
|
if (errno || res == NULL || strstr(res, "Unknown signal") != NULL)
|
|
|
|
Py_RETURN_NONE;
|
|
|
|
#endif
|
|
|
|
|
2023-10-20 12:08:41 -03:00
|
|
|
return PyUnicode_FromString(res);
|
2018-03-12 10:42:34 -03:00
|
|
|
}
|
|
|
|
|
Merged revisions 60481,60485,60489-60492,60494-60496,60498-60499,60501-60503,60505-60506,60508-60509,60523-60524,60532,60543,60545,60547-60548,60552,60554,60556-60559,60561-60562,60569,60571-60572,60574,60576-60583,60585-60586,60589,60591,60594-60595,60597-60598,60600-60601,60606-60612,60615,60617,60619-60621,60623-60625,60627-60629,60631,60633,60635,60647,60650,60652,60654,60656,60658-60659,60664-60666,60668-60670,60672,60676,60678,60680-60683,60685-60686,60688,60690,60692-60694,60697-60700,60705-60706,60708,60711,60714,60720,60724-60730,60732,60736,60742,60744,60746,60748,60750-60751,60753,60756-60757,60759-60761,60763-60764,60766,60769-60770,60774-60784,60787-60789,60793,60796,60799-60809,60812-60813,60815-60821,60823-60826,60828-60829,60831-60834,60836,60838-60839,60846-60849,60852-60854,60856-60859,60861-60870,60874-60875,60880-60881,60886,60888-60890,60892,60894-60898,60900,60902-60906,60908,60911-60917,60919-60920,60922,60926,60929-60931,60933-60935,60937,60939-60941,60943-60954,60959-60961,60963-60964,60966-60967,60971,60977,60979-60989 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r60980 | georg.brandl | 2008-02-23 16:02:28 +0100 (Sat, 23 Feb 2008) | 2 lines
#1492: allow overriding BaseHTTPServer's content type for error messages.
........
r60982 | georg.brandl | 2008-02-23 16:06:25 +0100 (Sat, 23 Feb 2008) | 2 lines
#2165: fix test_logging failure on some machines.
........
r60983 | facundo.batista | 2008-02-23 16:07:35 +0100 (Sat, 23 Feb 2008) | 6 lines
Issue 1089358. Adds the siginterrupt() function, that is just a
wrapper around the system call with the same name. Also added
test cases, doc changes and NEWS entry. Thanks Jason and Ralf
Schmitt.
........
r60984 | georg.brandl | 2008-02-23 16:11:18 +0100 (Sat, 23 Feb 2008) | 2 lines
#2067: file.__exit__() now calls subclasses' close() method.
........
r60985 | georg.brandl | 2008-02-23 16:19:54 +0100 (Sat, 23 Feb 2008) | 2 lines
More difflib examples. Written for GHOP by Josip Dzolonga.
........
r60987 | andrew.kuchling | 2008-02-23 16:41:51 +0100 (Sat, 23 Feb 2008) | 1 line
#2072: correct documentation for .rpc_paths
........
r60988 | georg.brandl | 2008-02-23 16:43:48 +0100 (Sat, 23 Feb 2008) | 2 lines
#2161: Fix opcode name.
........
r60989 | andrew.kuchling | 2008-02-23 16:49:35 +0100 (Sat, 23 Feb 2008) | 2 lines
#1119331: ncurses will just call exit() if the terminal name isn't found.
Call setupterm() first so that we get a Python exception instead of just existing.
........
2008-02-23 12:23:06 -04:00
|
|
|
#ifdef HAVE_SIGINTERRUPT
|
2015-05-16 08:14:49 -03:00
|
|
|
|
|
|
|
/*[clinic input]
|
|
|
|
signal.siginterrupt
|
|
|
|
|
|
|
|
signalnum: int
|
|
|
|
flag: int
|
|
|
|
/
|
|
|
|
|
|
|
|
Change system call restart behaviour.
|
|
|
|
|
|
|
|
If flag is False, system calls will be restarted when interrupted by
|
|
|
|
signal sig, else system calls will be interrupted.
|
|
|
|
[clinic start generated code]*/
|
Merged revisions 60481,60485,60489-60492,60494-60496,60498-60499,60501-60503,60505-60506,60508-60509,60523-60524,60532,60543,60545,60547-60548,60552,60554,60556-60559,60561-60562,60569,60571-60572,60574,60576-60583,60585-60586,60589,60591,60594-60595,60597-60598,60600-60601,60606-60612,60615,60617,60619-60621,60623-60625,60627-60629,60631,60633,60635,60647,60650,60652,60654,60656,60658-60659,60664-60666,60668-60670,60672,60676,60678,60680-60683,60685-60686,60688,60690,60692-60694,60697-60700,60705-60706,60708,60711,60714,60720,60724-60730,60732,60736,60742,60744,60746,60748,60750-60751,60753,60756-60757,60759-60761,60763-60764,60766,60769-60770,60774-60784,60787-60789,60793,60796,60799-60809,60812-60813,60815-60821,60823-60826,60828-60829,60831-60834,60836,60838-60839,60846-60849,60852-60854,60856-60859,60861-60870,60874-60875,60880-60881,60886,60888-60890,60892,60894-60898,60900,60902-60906,60908,60911-60917,60919-60920,60922,60926,60929-60931,60933-60935,60937,60939-60941,60943-60954,60959-60961,60963-60964,60966-60967,60971,60977,60979-60989 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r60980 | georg.brandl | 2008-02-23 16:02:28 +0100 (Sat, 23 Feb 2008) | 2 lines
#1492: allow overriding BaseHTTPServer's content type for error messages.
........
r60982 | georg.brandl | 2008-02-23 16:06:25 +0100 (Sat, 23 Feb 2008) | 2 lines
#2165: fix test_logging failure on some machines.
........
r60983 | facundo.batista | 2008-02-23 16:07:35 +0100 (Sat, 23 Feb 2008) | 6 lines
Issue 1089358. Adds the siginterrupt() function, that is just a
wrapper around the system call with the same name. Also added
test cases, doc changes and NEWS entry. Thanks Jason and Ralf
Schmitt.
........
r60984 | georg.brandl | 2008-02-23 16:11:18 +0100 (Sat, 23 Feb 2008) | 2 lines
#2067: file.__exit__() now calls subclasses' close() method.
........
r60985 | georg.brandl | 2008-02-23 16:19:54 +0100 (Sat, 23 Feb 2008) | 2 lines
More difflib examples. Written for GHOP by Josip Dzolonga.
........
r60987 | andrew.kuchling | 2008-02-23 16:41:51 +0100 (Sat, 23 Feb 2008) | 1 line
#2072: correct documentation for .rpc_paths
........
r60988 | georg.brandl | 2008-02-23 16:43:48 +0100 (Sat, 23 Feb 2008) | 2 lines
#2161: Fix opcode name.
........
r60989 | andrew.kuchling | 2008-02-23 16:49:35 +0100 (Sat, 23 Feb 2008) | 2 lines
#1119331: ncurses will just call exit() if the terminal name isn't found.
Call setupterm() first so that we get a Python exception instead of just existing.
........
2008-02-23 12:23:06 -04:00
|
|
|
|
|
|
|
static PyObject *
|
2016-07-07 11:35:15 -03:00
|
|
|
signal_siginterrupt_impl(PyObject *module, int signalnum, int flag)
|
|
|
|
/*[clinic end generated code: output=063816243d85dd19 input=4160acacca3e2099]*/
|
Merged revisions 60481,60485,60489-60492,60494-60496,60498-60499,60501-60503,60505-60506,60508-60509,60523-60524,60532,60543,60545,60547-60548,60552,60554,60556-60559,60561-60562,60569,60571-60572,60574,60576-60583,60585-60586,60589,60591,60594-60595,60597-60598,60600-60601,60606-60612,60615,60617,60619-60621,60623-60625,60627-60629,60631,60633,60635,60647,60650,60652,60654,60656,60658-60659,60664-60666,60668-60670,60672,60676,60678,60680-60683,60685-60686,60688,60690,60692-60694,60697-60700,60705-60706,60708,60711,60714,60720,60724-60730,60732,60736,60742,60744,60746,60748,60750-60751,60753,60756-60757,60759-60761,60763-60764,60766,60769-60770,60774-60784,60787-60789,60793,60796,60799-60809,60812-60813,60815-60821,60823-60826,60828-60829,60831-60834,60836,60838-60839,60846-60849,60852-60854,60856-60859,60861-60870,60874-60875,60880-60881,60886,60888-60890,60892,60894-60898,60900,60902-60906,60908,60911-60917,60919-60920,60922,60926,60929-60931,60933-60935,60937,60939-60941,60943-60954,60959-60961,60963-60964,60966-60967,60971,60977,60979-60989 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r60980 | georg.brandl | 2008-02-23 16:02:28 +0100 (Sat, 23 Feb 2008) | 2 lines
#1492: allow overriding BaseHTTPServer's content type for error messages.
........
r60982 | georg.brandl | 2008-02-23 16:06:25 +0100 (Sat, 23 Feb 2008) | 2 lines
#2165: fix test_logging failure on some machines.
........
r60983 | facundo.batista | 2008-02-23 16:07:35 +0100 (Sat, 23 Feb 2008) | 6 lines
Issue 1089358. Adds the siginterrupt() function, that is just a
wrapper around the system call with the same name. Also added
test cases, doc changes and NEWS entry. Thanks Jason and Ralf
Schmitt.
........
r60984 | georg.brandl | 2008-02-23 16:11:18 +0100 (Sat, 23 Feb 2008) | 2 lines
#2067: file.__exit__() now calls subclasses' close() method.
........
r60985 | georg.brandl | 2008-02-23 16:19:54 +0100 (Sat, 23 Feb 2008) | 2 lines
More difflib examples. Written for GHOP by Josip Dzolonga.
........
r60987 | andrew.kuchling | 2008-02-23 16:41:51 +0100 (Sat, 23 Feb 2008) | 1 line
#2072: correct documentation for .rpc_paths
........
r60988 | georg.brandl | 2008-02-23 16:43:48 +0100 (Sat, 23 Feb 2008) | 2 lines
#2161: Fix opcode name.
........
r60989 | andrew.kuchling | 2008-02-23 16:49:35 +0100 (Sat, 23 Feb 2008) | 2 lines
#1119331: ncurses will just call exit() if the terminal name isn't found.
Call setupterm() first so that we get a Python exception instead of just existing.
........
2008-02-23 12:23:06 -04:00
|
|
|
{
|
2022-04-25 19:13:31 -03:00
|
|
|
if (signalnum < 1 || signalnum >= Py_NSIG) {
|
2010-05-09 12:52:27 -03:00
|
|
|
PyErr_SetString(PyExc_ValueError,
|
|
|
|
"signal number out of range");
|
|
|
|
return NULL;
|
|
|
|
}
|
2020-09-02 11:29:12 -03:00
|
|
|
#ifdef HAVE_SIGACTION
|
|
|
|
struct sigaction act;
|
|
|
|
(void) sigaction(signalnum, NULL, &act);
|
|
|
|
if (flag) {
|
|
|
|
act.sa_flags &= ~SA_RESTART;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
act.sa_flags |= SA_RESTART;
|
|
|
|
}
|
|
|
|
if (sigaction(signalnum, &act, NULL) < 0) {
|
|
|
|
#else
|
|
|
|
if (siginterrupt(signalnum, flag) < 0) {
|
|
|
|
#endif
|
2011-05-10 12:13:00 -03:00
|
|
|
PyErr_SetFromErrno(PyExc_OSError);
|
2010-05-09 12:52:27 -03:00
|
|
|
return NULL;
|
|
|
|
}
|
2015-05-16 08:14:49 -03:00
|
|
|
Py_RETURN_NONE;
|
Merged revisions 60481,60485,60489-60492,60494-60496,60498-60499,60501-60503,60505-60506,60508-60509,60523-60524,60532,60543,60545,60547-60548,60552,60554,60556-60559,60561-60562,60569,60571-60572,60574,60576-60583,60585-60586,60589,60591,60594-60595,60597-60598,60600-60601,60606-60612,60615,60617,60619-60621,60623-60625,60627-60629,60631,60633,60635,60647,60650,60652,60654,60656,60658-60659,60664-60666,60668-60670,60672,60676,60678,60680-60683,60685-60686,60688,60690,60692-60694,60697-60700,60705-60706,60708,60711,60714,60720,60724-60730,60732,60736,60742,60744,60746,60748,60750-60751,60753,60756-60757,60759-60761,60763-60764,60766,60769-60770,60774-60784,60787-60789,60793,60796,60799-60809,60812-60813,60815-60821,60823-60826,60828-60829,60831-60834,60836,60838-60839,60846-60849,60852-60854,60856-60859,60861-60870,60874-60875,60880-60881,60886,60888-60890,60892,60894-60898,60900,60902-60906,60908,60911-60917,60919-60920,60922,60926,60929-60931,60933-60935,60937,60939-60941,60943-60954,60959-60961,60963-60964,60966-60967,60971,60977,60979-60989 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r60980 | georg.brandl | 2008-02-23 16:02:28 +0100 (Sat, 23 Feb 2008) | 2 lines
#1492: allow overriding BaseHTTPServer's content type for error messages.
........
r60982 | georg.brandl | 2008-02-23 16:06:25 +0100 (Sat, 23 Feb 2008) | 2 lines
#2165: fix test_logging failure on some machines.
........
r60983 | facundo.batista | 2008-02-23 16:07:35 +0100 (Sat, 23 Feb 2008) | 6 lines
Issue 1089358. Adds the siginterrupt() function, that is just a
wrapper around the system call with the same name. Also added
test cases, doc changes and NEWS entry. Thanks Jason and Ralf
Schmitt.
........
r60984 | georg.brandl | 2008-02-23 16:11:18 +0100 (Sat, 23 Feb 2008) | 2 lines
#2067: file.__exit__() now calls subclasses' close() method.
........
r60985 | georg.brandl | 2008-02-23 16:19:54 +0100 (Sat, 23 Feb 2008) | 2 lines
More difflib examples. Written for GHOP by Josip Dzolonga.
........
r60987 | andrew.kuchling | 2008-02-23 16:41:51 +0100 (Sat, 23 Feb 2008) | 1 line
#2072: correct documentation for .rpc_paths
........
r60988 | georg.brandl | 2008-02-23 16:43:48 +0100 (Sat, 23 Feb 2008) | 2 lines
#2161: Fix opcode name.
........
r60989 | andrew.kuchling | 2008-02-23 16:49:35 +0100 (Sat, 23 Feb 2008) | 2 lines
#1119331: ncurses will just call exit() if the terminal name isn't found.
Call setupterm() first so that we get a Python exception instead of just existing.
........
2008-02-23 12:23:06 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
2000-09-16 13:35:28 -03:00
|
|
|
|
2015-05-16 08:14:49 -03:00
|
|
|
|
|
|
|
static PyObject*
|
2017-12-18 00:10:18 -04:00
|
|
|
signal_set_wakeup_fd(PyObject *self, PyObject *args, PyObject *kwds)
|
Merged revisions 59565-59594 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r59568 | facundo.batista | 2007-12-19 13:53:01 +0100 (Wed, 19 Dec 2007) | 3 lines
Some minor cleanups. Thanks Mark Dickinson.
........
r59573 | raymond.hettinger | 2007-12-19 19:13:31 +0100 (Wed, 19 Dec 2007) | 1 line
Fix issue 1661: Flags argument silently ignored in re functions with compiled regexes.
........
r59574 | guido.van.rossum | 2007-12-19 20:41:06 +0100 (Wed, 19 Dec 2007) | 7 lines
Patch #1583 by Adam Olsen.
This adds signal.set_wakeup_fd(fd) which sets a file descriptor to
which a zero byte will be written whenever a C exception handler runs.
I added a simple C API as well, PySignal_SetWakeupFd(fd).
........
r59575 | raymond.hettinger | 2007-12-19 23:14:34 +0100 (Wed, 19 Dec 2007) | 1 line
Bigger range for non-extended opargs.
........
r59576 | guido.van.rossum | 2007-12-19 23:51:13 +0100 (Wed, 19 Dec 2007) | 5 lines
Patch #1549 by Thomas Herve.
This changes the rules for when __hash__ is inherited slightly,
by allowing it to be inherited when one or more of __lt__, __le__,
__gt__, __ge__ are overridden, as long as __eq__ and __ne__ aren't.
........
r59577 | raymond.hettinger | 2007-12-20 02:25:05 +0100 (Thu, 20 Dec 2007) | 1 line
Add comments
........
r59578 | brett.cannon | 2007-12-20 11:09:52 +0100 (Thu, 20 Dec 2007) | 3 lines
Add tests for the warnings module; specifically formatwarning and showwarning.
Still need tests for warn_explicit and simplefilter.
........
r59582 | guido.van.rossum | 2007-12-20 18:28:10 +0100 (Thu, 20 Dec 2007) | 2 lines
Patch #1672 by Joseph Armbruster. Use tempdir() to get a temporary directory.
........
r59584 | georg.brandl | 2007-12-20 22:03:02 +0100 (Thu, 20 Dec 2007) | 2 lines
Fix refleak introduced in r59576.
........
r59586 | guido.van.rossum | 2007-12-21 00:48:28 +0100 (Fri, 21 Dec 2007) | 4 lines
Improve performance of built-in any()/all() by avoiding PyIter_Next() --
using a trick found in ifilter().
Feel free to backport to 2.5.
........
r59591 | andrew.kuchling | 2007-12-22 18:27:02 +0100 (Sat, 22 Dec 2007) | 1 line
Add item
........
2007-12-24 04:52:31 -04:00
|
|
|
{
|
2015-03-30 05:09:31 -03:00
|
|
|
struct _Py_stat_struct status;
|
2017-12-18 00:10:18 -04:00
|
|
|
static char *kwlist[] = {
|
|
|
|
"", "warn_on_full_buffer", NULL,
|
|
|
|
};
|
|
|
|
int warn_on_full_buffer = 1;
|
2014-07-29 18:31:34 -03:00
|
|
|
#ifdef MS_WINDOWS
|
|
|
|
PyObject *fdobj;
|
2015-02-12 11:34:54 -04:00
|
|
|
SOCKET_T sockfd, old_sockfd;
|
2014-07-29 18:31:34 -03:00
|
|
|
int res;
|
|
|
|
int res_size = sizeof res;
|
|
|
|
PyObject *mod;
|
|
|
|
int is_socket;
|
|
|
|
|
2017-12-18 00:10:18 -04:00
|
|
|
if (!PyArg_ParseTupleAndKeywords(args, kwds, "O|$p:set_wakeup_fd", kwlist,
|
|
|
|
&fdobj, &warn_on_full_buffer))
|
2014-07-29 18:31:34 -03:00
|
|
|
return NULL;
|
|
|
|
|
2015-02-12 11:34:54 -04:00
|
|
|
sockfd = PyLong_AsSocket_t(fdobj);
|
|
|
|
if (sockfd == (SOCKET_T)(-1) && PyErr_Occurred())
|
2014-07-29 18:31:34 -03:00
|
|
|
return NULL;
|
|
|
|
#else
|
2020-11-17 13:57:32 -04:00
|
|
|
int fd;
|
2014-07-29 18:31:34 -03:00
|
|
|
|
2017-12-18 00:10:18 -04:00
|
|
|
if (!PyArg_ParseTupleAndKeywords(args, kwds, "i|$p:set_wakeup_fd", kwlist,
|
|
|
|
&fd, &warn_on_full_buffer))
|
2010-05-09 12:52:27 -03:00
|
|
|
return NULL;
|
2014-07-29 18:31:34 -03:00
|
|
|
#endif
|
|
|
|
|
2020-03-26 18:28:11 -03:00
|
|
|
PyThreadState *tstate = _PyThreadState_GET();
|
2020-04-08 18:35:05 -03:00
|
|
|
if (!_Py_ThreadCanHandleSignals(tstate->interp)) {
|
2020-03-26 18:28:11 -03:00
|
|
|
_PyErr_SetString(tstate, PyExc_ValueError,
|
|
|
|
"set_wakeup_fd only works in main thread "
|
|
|
|
"of the main interpreter");
|
2010-05-09 12:52:27 -03:00
|
|
|
return NULL;
|
|
|
|
}
|
2014-07-21 11:28:54 -03:00
|
|
|
|
2014-07-29 18:31:34 -03:00
|
|
|
#ifdef MS_WINDOWS
|
|
|
|
is_socket = 0;
|
2015-02-12 11:34:54 -04:00
|
|
|
if (sockfd != INVALID_FD) {
|
2014-07-29 18:31:34 -03:00
|
|
|
/* Import the _socket module to call WSAStartup() */
|
2021-12-12 04:45:20 -04:00
|
|
|
mod = PyImport_ImportModule("_socket");
|
2014-07-29 18:31:34 -03:00
|
|
|
if (mod == NULL)
|
|
|
|
return NULL;
|
|
|
|
Py_DECREF(mod);
|
|
|
|
|
|
|
|
/* test the socket */
|
2015-02-12 11:34:54 -04:00
|
|
|
if (getsockopt(sockfd, SOL_SOCKET, SO_ERROR,
|
2014-07-29 18:31:34 -03:00
|
|
|
(char *)&res, &res_size) != 0) {
|
2015-02-12 11:34:54 -04:00
|
|
|
int fd, err;
|
|
|
|
|
|
|
|
err = WSAGetLastError();
|
2014-07-29 18:31:34 -03:00
|
|
|
if (err != WSAENOTSOCK) {
|
|
|
|
PyErr_SetExcFromWindowsErr(PyExc_OSError, err);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2015-02-12 11:34:54 -04:00
|
|
|
fd = (int)sockfd;
|
2016-09-08 15:21:54 -03:00
|
|
|
if ((SOCKET_T)fd != sockfd) {
|
2020-03-26 18:28:11 -03:00
|
|
|
_PyErr_SetString(tstate, PyExc_ValueError, "invalid fd");
|
2014-07-29 18:31:34 -03:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2020-03-26 18:28:11 -03:00
|
|
|
if (_Py_fstat(fd, &status) != 0) {
|
2014-07-29 18:31:34 -03:00
|
|
|
return NULL;
|
2020-03-26 18:28:11 -03:00
|
|
|
}
|
2014-08-27 07:59:44 -03:00
|
|
|
|
|
|
|
/* on Windows, a file cannot be set to non-blocking mode */
|
2014-07-29 18:31:34 -03:00
|
|
|
}
|
2014-08-27 07:59:44 -03:00
|
|
|
else {
|
2014-07-29 18:31:34 -03:00
|
|
|
is_socket = 1;
|
2014-08-27 07:59:44 -03:00
|
|
|
|
|
|
|
/* Windows does not provide a function to test if a socket
|
|
|
|
is in non-blocking mode */
|
|
|
|
}
|
2014-07-29 18:31:34 -03:00
|
|
|
}
|
|
|
|
|
2015-02-12 11:34:54 -04:00
|
|
|
old_sockfd = wakeup.fd;
|
2022-12-12 19:50:19 -04:00
|
|
|
wakeup.fd = Py_SAFE_DOWNCAST(sockfd, SOCKET_T, int);
|
2017-12-18 00:10:18 -04:00
|
|
|
wakeup.warn_on_full_buffer = warn_on_full_buffer;
|
2014-07-29 18:31:34 -03:00
|
|
|
wakeup.use_send = is_socket;
|
|
|
|
|
2015-02-12 11:34:54 -04:00
|
|
|
if (old_sockfd != INVALID_FD)
|
|
|
|
return PyLong_FromSocket_t(old_sockfd);
|
2014-07-29 18:31:34 -03:00
|
|
|
else
|
|
|
|
return PyLong_FromLong(-1);
|
|
|
|
#else
|
2014-07-24 16:58:53 -03:00
|
|
|
if (fd != -1) {
|
2014-08-27 07:59:44 -03:00
|
|
|
int blocking;
|
|
|
|
|
2015-03-30 05:09:31 -03:00
|
|
|
if (_Py_fstat(fd, &status) != 0)
|
2014-07-29 18:31:34 -03:00
|
|
|
return NULL;
|
2014-08-27 07:59:44 -03:00
|
|
|
|
|
|
|
blocking = _Py_get_blocking(fd);
|
|
|
|
if (blocking < 0)
|
|
|
|
return NULL;
|
|
|
|
if (blocking) {
|
2020-03-26 18:28:11 -03:00
|
|
|
_PyErr_Format(tstate, PyExc_ValueError,
|
|
|
|
"the fd %i must be in non-blocking mode",
|
|
|
|
fd);
|
2014-08-27 07:59:44 -03:00
|
|
|
return NULL;
|
|
|
|
}
|
2010-05-09 12:52:27 -03:00
|
|
|
}
|
2014-07-21 11:28:54 -03:00
|
|
|
|
2020-11-17 13:57:32 -04:00
|
|
|
int old_fd = wakeup.fd;
|
2017-12-18 00:10:18 -04:00
|
|
|
wakeup.fd = fd;
|
|
|
|
wakeup.warn_on_full_buffer = warn_on_full_buffer;
|
2014-07-21 11:28:54 -03:00
|
|
|
|
2010-05-09 12:52:27 -03:00
|
|
|
return PyLong_FromLong(old_fd);
|
2014-07-29 18:31:34 -03:00
|
|
|
#endif
|
Merged revisions 59565-59594 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r59568 | facundo.batista | 2007-12-19 13:53:01 +0100 (Wed, 19 Dec 2007) | 3 lines
Some minor cleanups. Thanks Mark Dickinson.
........
r59573 | raymond.hettinger | 2007-12-19 19:13:31 +0100 (Wed, 19 Dec 2007) | 1 line
Fix issue 1661: Flags argument silently ignored in re functions with compiled regexes.
........
r59574 | guido.van.rossum | 2007-12-19 20:41:06 +0100 (Wed, 19 Dec 2007) | 7 lines
Patch #1583 by Adam Olsen.
This adds signal.set_wakeup_fd(fd) which sets a file descriptor to
which a zero byte will be written whenever a C exception handler runs.
I added a simple C API as well, PySignal_SetWakeupFd(fd).
........
r59575 | raymond.hettinger | 2007-12-19 23:14:34 +0100 (Wed, 19 Dec 2007) | 1 line
Bigger range for non-extended opargs.
........
r59576 | guido.van.rossum | 2007-12-19 23:51:13 +0100 (Wed, 19 Dec 2007) | 5 lines
Patch #1549 by Thomas Herve.
This changes the rules for when __hash__ is inherited slightly,
by allowing it to be inherited when one or more of __lt__, __le__,
__gt__, __ge__ are overridden, as long as __eq__ and __ne__ aren't.
........
r59577 | raymond.hettinger | 2007-12-20 02:25:05 +0100 (Thu, 20 Dec 2007) | 1 line
Add comments
........
r59578 | brett.cannon | 2007-12-20 11:09:52 +0100 (Thu, 20 Dec 2007) | 3 lines
Add tests for the warnings module; specifically formatwarning and showwarning.
Still need tests for warn_explicit and simplefilter.
........
r59582 | guido.van.rossum | 2007-12-20 18:28:10 +0100 (Thu, 20 Dec 2007) | 2 lines
Patch #1672 by Joseph Armbruster. Use tempdir() to get a temporary directory.
........
r59584 | georg.brandl | 2007-12-20 22:03:02 +0100 (Thu, 20 Dec 2007) | 2 lines
Fix refleak introduced in r59576.
........
r59586 | guido.van.rossum | 2007-12-21 00:48:28 +0100 (Fri, 21 Dec 2007) | 4 lines
Improve performance of built-in any()/all() by avoiding PyIter_Next() --
using a trick found in ifilter().
Feel free to backport to 2.5.
........
r59591 | andrew.kuchling | 2007-12-22 18:27:02 +0100 (Sat, 22 Dec 2007) | 1 line
Add item
........
2007-12-24 04:52:31 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
PyDoc_STRVAR(set_wakeup_fd_doc,
|
2017-12-18 00:10:18 -04:00
|
|
|
"set_wakeup_fd(fd, *, warn_on_full_buffer=True) -> fd\n\
|
Merged revisions 59565-59594 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r59568 | facundo.batista | 2007-12-19 13:53:01 +0100 (Wed, 19 Dec 2007) | 3 lines
Some minor cleanups. Thanks Mark Dickinson.
........
r59573 | raymond.hettinger | 2007-12-19 19:13:31 +0100 (Wed, 19 Dec 2007) | 1 line
Fix issue 1661: Flags argument silently ignored in re functions with compiled regexes.
........
r59574 | guido.van.rossum | 2007-12-19 20:41:06 +0100 (Wed, 19 Dec 2007) | 7 lines
Patch #1583 by Adam Olsen.
This adds signal.set_wakeup_fd(fd) which sets a file descriptor to
which a zero byte will be written whenever a C exception handler runs.
I added a simple C API as well, PySignal_SetWakeupFd(fd).
........
r59575 | raymond.hettinger | 2007-12-19 23:14:34 +0100 (Wed, 19 Dec 2007) | 1 line
Bigger range for non-extended opargs.
........
r59576 | guido.van.rossum | 2007-12-19 23:51:13 +0100 (Wed, 19 Dec 2007) | 5 lines
Patch #1549 by Thomas Herve.
This changes the rules for when __hash__ is inherited slightly,
by allowing it to be inherited when one or more of __lt__, __le__,
__gt__, __ge__ are overridden, as long as __eq__ and __ne__ aren't.
........
r59577 | raymond.hettinger | 2007-12-20 02:25:05 +0100 (Thu, 20 Dec 2007) | 1 line
Add comments
........
r59578 | brett.cannon | 2007-12-20 11:09:52 +0100 (Thu, 20 Dec 2007) | 3 lines
Add tests for the warnings module; specifically formatwarning and showwarning.
Still need tests for warn_explicit and simplefilter.
........
r59582 | guido.van.rossum | 2007-12-20 18:28:10 +0100 (Thu, 20 Dec 2007) | 2 lines
Patch #1672 by Joseph Armbruster. Use tempdir() to get a temporary directory.
........
r59584 | georg.brandl | 2007-12-20 22:03:02 +0100 (Thu, 20 Dec 2007) | 2 lines
Fix refleak introduced in r59576.
........
r59586 | guido.van.rossum | 2007-12-21 00:48:28 +0100 (Fri, 21 Dec 2007) | 4 lines
Improve performance of built-in any()/all() by avoiding PyIter_Next() --
using a trick found in ifilter().
Feel free to backport to 2.5.
........
r59591 | andrew.kuchling | 2007-12-22 18:27:02 +0100 (Sat, 22 Dec 2007) | 1 line
Add item
........
2007-12-24 04:52:31 -04:00
|
|
|
\n\
|
2014-07-29 18:31:34 -03:00
|
|
|
Sets the fd to be written to (with the signal number) when a signal\n\
|
Merged revisions 59565-59594 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r59568 | facundo.batista | 2007-12-19 13:53:01 +0100 (Wed, 19 Dec 2007) | 3 lines
Some minor cleanups. Thanks Mark Dickinson.
........
r59573 | raymond.hettinger | 2007-12-19 19:13:31 +0100 (Wed, 19 Dec 2007) | 1 line
Fix issue 1661: Flags argument silently ignored in re functions with compiled regexes.
........
r59574 | guido.van.rossum | 2007-12-19 20:41:06 +0100 (Wed, 19 Dec 2007) | 7 lines
Patch #1583 by Adam Olsen.
This adds signal.set_wakeup_fd(fd) which sets a file descriptor to
which a zero byte will be written whenever a C exception handler runs.
I added a simple C API as well, PySignal_SetWakeupFd(fd).
........
r59575 | raymond.hettinger | 2007-12-19 23:14:34 +0100 (Wed, 19 Dec 2007) | 1 line
Bigger range for non-extended opargs.
........
r59576 | guido.van.rossum | 2007-12-19 23:51:13 +0100 (Wed, 19 Dec 2007) | 5 lines
Patch #1549 by Thomas Herve.
This changes the rules for when __hash__ is inherited slightly,
by allowing it to be inherited when one or more of __lt__, __le__,
__gt__, __ge__ are overridden, as long as __eq__ and __ne__ aren't.
........
r59577 | raymond.hettinger | 2007-12-20 02:25:05 +0100 (Thu, 20 Dec 2007) | 1 line
Add comments
........
r59578 | brett.cannon | 2007-12-20 11:09:52 +0100 (Thu, 20 Dec 2007) | 3 lines
Add tests for the warnings module; specifically formatwarning and showwarning.
Still need tests for warn_explicit and simplefilter.
........
r59582 | guido.van.rossum | 2007-12-20 18:28:10 +0100 (Thu, 20 Dec 2007) | 2 lines
Patch #1672 by Joseph Armbruster. Use tempdir() to get a temporary directory.
........
r59584 | georg.brandl | 2007-12-20 22:03:02 +0100 (Thu, 20 Dec 2007) | 2 lines
Fix refleak introduced in r59576.
........
r59586 | guido.van.rossum | 2007-12-21 00:48:28 +0100 (Fri, 21 Dec 2007) | 4 lines
Improve performance of built-in any()/all() by avoiding PyIter_Next() --
using a trick found in ifilter().
Feel free to backport to 2.5.
........
r59591 | andrew.kuchling | 2007-12-22 18:27:02 +0100 (Sat, 22 Dec 2007) | 1 line
Add item
........
2007-12-24 04:52:31 -04:00
|
|
|
comes in. A library can use this to wakeup select or poll.\n\
|
2014-07-29 18:31:34 -03:00
|
|
|
The previous fd or -1 is returned.\n\
|
Merged revisions 59565-59594 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r59568 | facundo.batista | 2007-12-19 13:53:01 +0100 (Wed, 19 Dec 2007) | 3 lines
Some minor cleanups. Thanks Mark Dickinson.
........
r59573 | raymond.hettinger | 2007-12-19 19:13:31 +0100 (Wed, 19 Dec 2007) | 1 line
Fix issue 1661: Flags argument silently ignored in re functions with compiled regexes.
........
r59574 | guido.van.rossum | 2007-12-19 20:41:06 +0100 (Wed, 19 Dec 2007) | 7 lines
Patch #1583 by Adam Olsen.
This adds signal.set_wakeup_fd(fd) which sets a file descriptor to
which a zero byte will be written whenever a C exception handler runs.
I added a simple C API as well, PySignal_SetWakeupFd(fd).
........
r59575 | raymond.hettinger | 2007-12-19 23:14:34 +0100 (Wed, 19 Dec 2007) | 1 line
Bigger range for non-extended opargs.
........
r59576 | guido.van.rossum | 2007-12-19 23:51:13 +0100 (Wed, 19 Dec 2007) | 5 lines
Patch #1549 by Thomas Herve.
This changes the rules for when __hash__ is inherited slightly,
by allowing it to be inherited when one or more of __lt__, __le__,
__gt__, __ge__ are overridden, as long as __eq__ and __ne__ aren't.
........
r59577 | raymond.hettinger | 2007-12-20 02:25:05 +0100 (Thu, 20 Dec 2007) | 1 line
Add comments
........
r59578 | brett.cannon | 2007-12-20 11:09:52 +0100 (Thu, 20 Dec 2007) | 3 lines
Add tests for the warnings module; specifically formatwarning and showwarning.
Still need tests for warn_explicit and simplefilter.
........
r59582 | guido.van.rossum | 2007-12-20 18:28:10 +0100 (Thu, 20 Dec 2007) | 2 lines
Patch #1672 by Joseph Armbruster. Use tempdir() to get a temporary directory.
........
r59584 | georg.brandl | 2007-12-20 22:03:02 +0100 (Thu, 20 Dec 2007) | 2 lines
Fix refleak introduced in r59576.
........
r59586 | guido.van.rossum | 2007-12-21 00:48:28 +0100 (Fri, 21 Dec 2007) | 4 lines
Improve performance of built-in any()/all() by avoiding PyIter_Next() --
using a trick found in ifilter().
Feel free to backport to 2.5.
........
r59591 | andrew.kuchling | 2007-12-22 18:27:02 +0100 (Sat, 22 Dec 2007) | 1 line
Add item
........
2007-12-24 04:52:31 -04:00
|
|
|
\n\
|
|
|
|
The fd must be non-blocking.");
|
|
|
|
|
|
|
|
/* C API for the same, without all the error checking */
|
|
|
|
int
|
|
|
|
PySignal_SetWakeupFd(int fd)
|
|
|
|
{
|
2020-11-17 13:57:32 -04:00
|
|
|
if (fd < 0) {
|
2010-05-09 12:52:27 -03:00
|
|
|
fd = -1;
|
2020-11-17 13:57:32 -04:00
|
|
|
}
|
2014-07-29 18:31:34 -03:00
|
|
|
|
2020-11-17 13:57:32 -04:00
|
|
|
int old_fd = wakeup.fd;
|
2017-12-18 00:10:18 -04:00
|
|
|
wakeup.fd = fd;
|
|
|
|
wakeup.warn_on_full_buffer = 1;
|
2010-05-09 12:52:27 -03:00
|
|
|
return old_fd;
|
Merged revisions 59565-59594 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r59568 | facundo.batista | 2007-12-19 13:53:01 +0100 (Wed, 19 Dec 2007) | 3 lines
Some minor cleanups. Thanks Mark Dickinson.
........
r59573 | raymond.hettinger | 2007-12-19 19:13:31 +0100 (Wed, 19 Dec 2007) | 1 line
Fix issue 1661: Flags argument silently ignored in re functions with compiled regexes.
........
r59574 | guido.van.rossum | 2007-12-19 20:41:06 +0100 (Wed, 19 Dec 2007) | 7 lines
Patch #1583 by Adam Olsen.
This adds signal.set_wakeup_fd(fd) which sets a file descriptor to
which a zero byte will be written whenever a C exception handler runs.
I added a simple C API as well, PySignal_SetWakeupFd(fd).
........
r59575 | raymond.hettinger | 2007-12-19 23:14:34 +0100 (Wed, 19 Dec 2007) | 1 line
Bigger range for non-extended opargs.
........
r59576 | guido.van.rossum | 2007-12-19 23:51:13 +0100 (Wed, 19 Dec 2007) | 5 lines
Patch #1549 by Thomas Herve.
This changes the rules for when __hash__ is inherited slightly,
by allowing it to be inherited when one or more of __lt__, __le__,
__gt__, __ge__ are overridden, as long as __eq__ and __ne__ aren't.
........
r59577 | raymond.hettinger | 2007-12-20 02:25:05 +0100 (Thu, 20 Dec 2007) | 1 line
Add comments
........
r59578 | brett.cannon | 2007-12-20 11:09:52 +0100 (Thu, 20 Dec 2007) | 3 lines
Add tests for the warnings module; specifically formatwarning and showwarning.
Still need tests for warn_explicit and simplefilter.
........
r59582 | guido.van.rossum | 2007-12-20 18:28:10 +0100 (Thu, 20 Dec 2007) | 2 lines
Patch #1672 by Joseph Armbruster. Use tempdir() to get a temporary directory.
........
r59584 | georg.brandl | 2007-12-20 22:03:02 +0100 (Thu, 20 Dec 2007) | 2 lines
Fix refleak introduced in r59576.
........
r59586 | guido.van.rossum | 2007-12-21 00:48:28 +0100 (Fri, 21 Dec 2007) | 4 lines
Improve performance of built-in any()/all() by avoiding PyIter_Next() --
using a trick found in ifilter().
Feel free to backport to 2.5.
........
r59591 | andrew.kuchling | 2007-12-22 18:27:02 +0100 (Sat, 22 Dec 2007) | 1 line
Add item
........
2007-12-24 04:52:31 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-03-24 10:39:54 -03:00
|
|
|
#ifdef HAVE_SETITIMER
|
2015-05-16 08:14:49 -03:00
|
|
|
/*[clinic input]
|
|
|
|
signal.setitimer
|
|
|
|
|
|
|
|
which: int
|
2017-10-13 17:49:43 -03:00
|
|
|
seconds: object
|
|
|
|
interval: object(c_default="NULL") = 0.0
|
2015-05-16 08:14:49 -03:00
|
|
|
/
|
|
|
|
|
|
|
|
Sets given itimer (one of ITIMER_REAL, ITIMER_VIRTUAL or ITIMER_PROF).
|
|
|
|
|
|
|
|
The timer will fire after value seconds and after that every interval seconds.
|
|
|
|
The itimer can be cleared by setting seconds to zero.
|
|
|
|
|
|
|
|
Returns old values as a tuple: (delay, interval).
|
|
|
|
[clinic start generated code]*/
|
|
|
|
|
2008-03-24 10:39:54 -03:00
|
|
|
static PyObject *
|
2017-10-13 17:49:43 -03:00
|
|
|
signal_setitimer_impl(PyObject *module, int which, PyObject *seconds,
|
|
|
|
PyObject *interval)
|
|
|
|
/*[clinic end generated code: output=65f9dcbddc35527b input=de43daf194e6f66f]*/
|
2008-03-24 10:39:54 -03:00
|
|
|
{
|
2021-04-27 22:02:55 -03:00
|
|
|
_signal_module_state *modstate = get_signal_state(module);
|
2008-03-24 10:39:54 -03:00
|
|
|
|
2021-04-27 22:02:55 -03:00
|
|
|
struct itimerval new;
|
2017-10-13 17:49:43 -03:00
|
|
|
if (timeval_from_double(seconds, &new.it_value) < 0) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
if (timeval_from_double(interval, &new.it_interval) < 0) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2008-03-24 10:39:54 -03:00
|
|
|
/* Let OS check "which" value */
|
2020-11-17 13:57:32 -04:00
|
|
|
struct itimerval old;
|
2008-03-24 10:39:54 -03:00
|
|
|
if (setitimer(which, &new, &old) != 0) {
|
2021-04-27 22:02:55 -03:00
|
|
|
PyErr_SetFromErrno(modstate->itimer_error);
|
2015-05-16 08:14:49 -03:00
|
|
|
return NULL;
|
2008-03-24 10:39:54 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
return itimer_retval(&old);
|
|
|
|
}
|
2021-04-27 22:02:55 -03:00
|
|
|
#endif // HAVE_SETITIMER
|
2008-03-24 10:39:54 -03:00
|
|
|
|
|
|
|
|
|
|
|
#ifdef HAVE_GETITIMER
|
2015-05-16 08:14:49 -03:00
|
|
|
/*[clinic input]
|
|
|
|
signal.getitimer
|
|
|
|
|
|
|
|
which: int
|
|
|
|
/
|
|
|
|
|
|
|
|
Returns current value of given itimer.
|
|
|
|
[clinic start generated code]*/
|
|
|
|
|
2008-03-24 10:39:54 -03:00
|
|
|
static PyObject *
|
2016-07-07 11:35:15 -03:00
|
|
|
signal_getitimer_impl(PyObject *module, int which)
|
|
|
|
/*[clinic end generated code: output=9e053175d517db40 input=f7d21d38f3490627]*/
|
2008-03-24 10:39:54 -03:00
|
|
|
{
|
2021-04-27 22:02:55 -03:00
|
|
|
_signal_module_state *modstate = get_signal_state(module);
|
2008-03-24 10:39:54 -03:00
|
|
|
|
2021-04-27 22:02:55 -03:00
|
|
|
struct itimerval old;
|
2008-03-24 10:39:54 -03:00
|
|
|
if (getitimer(which, &old) != 0) {
|
2021-04-27 22:02:55 -03:00
|
|
|
PyErr_SetFromErrno(modstate->itimer_error);
|
2015-05-16 08:14:49 -03:00
|
|
|
return NULL;
|
2008-03-24 10:39:54 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
return itimer_retval(&old);
|
|
|
|
}
|
2021-04-27 22:02:55 -03:00
|
|
|
#endif // HAVE_GETITIMER
|
2008-03-24 10:39:54 -03:00
|
|
|
|
|
|
|
|
2021-11-25 07:28:41 -04:00
|
|
|
#ifdef HAVE_SIGSET_T
|
2011-05-07 20:46:11 -03:00
|
|
|
#if defined(PYPTHREAD_SIGMASK) || defined(HAVE_SIGPENDING)
|
2011-05-04 08:20:35 -03:00
|
|
|
static PyObject*
|
|
|
|
sigset_to_set(sigset_t mask)
|
2011-04-30 10:21:58 -03:00
|
|
|
{
|
2011-05-04 08:20:35 -03:00
|
|
|
PyObject *signum, *result;
|
|
|
|
int sig;
|
2011-04-30 10:21:58 -03:00
|
|
|
|
2011-05-04 08:20:35 -03:00
|
|
|
result = PySet_New(0);
|
2011-04-30 10:21:58 -03:00
|
|
|
if (result == NULL)
|
|
|
|
return NULL;
|
|
|
|
|
2022-04-25 19:13:31 -03:00
|
|
|
for (sig = 1; sig < Py_NSIG; sig++) {
|
2011-05-04 08:20:35 -03:00
|
|
|
if (sigismember(&mask, sig) != 1)
|
2011-04-30 10:21:58 -03:00
|
|
|
continue;
|
|
|
|
|
|
|
|
/* Handle the case where it is a member by adding the signal to
|
|
|
|
the result list. Ignore the other cases because they mean the
|
|
|
|
signal isn't a member of the mask or the signal was invalid,
|
|
|
|
and an invalid signal must have been our fault in constructing
|
|
|
|
the loop boundaries. */
|
|
|
|
signum = PyLong_FromLong(sig);
|
|
|
|
if (signum == NULL) {
|
|
|
|
Py_DECREF(result);
|
|
|
|
return NULL;
|
|
|
|
}
|
2011-05-04 08:20:35 -03:00
|
|
|
if (PySet_Add(result, signum) == -1) {
|
2011-04-30 10:21:58 -03:00
|
|
|
Py_DECREF(signum);
|
|
|
|
Py_DECREF(result);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
Py_DECREF(signum);
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
2011-05-07 20:46:11 -03:00
|
|
|
#endif
|
2011-04-30 10:21:58 -03:00
|
|
|
|
2011-05-07 20:46:11 -03:00
|
|
|
#ifdef PYPTHREAD_SIGMASK
|
2015-05-16 08:14:49 -03:00
|
|
|
|
|
|
|
/*[clinic input]
|
|
|
|
signal.pthread_sigmask
|
|
|
|
|
|
|
|
how: int
|
2018-05-08 01:48:50 -03:00
|
|
|
mask: sigset_t
|
2015-05-16 08:14:49 -03:00
|
|
|
/
|
|
|
|
|
|
|
|
Fetch and/or change the signal mask of the calling thread.
|
|
|
|
[clinic start generated code]*/
|
|
|
|
|
2011-05-04 08:20:35 -03:00
|
|
|
static PyObject *
|
2018-05-08 01:48:50 -03:00
|
|
|
signal_pthread_sigmask_impl(PyObject *module, int how, sigset_t mask)
|
|
|
|
/*[clinic end generated code: output=0562c0fb192981a8 input=85bcebda442fa77f]*/
|
2011-05-04 08:20:35 -03:00
|
|
|
{
|
2018-05-08 01:48:50 -03:00
|
|
|
sigset_t previous;
|
2011-05-04 08:20:35 -03:00
|
|
|
int err;
|
|
|
|
|
2018-05-08 01:48:50 -03:00
|
|
|
err = pthread_sigmask(how, &mask, &previous);
|
2011-05-04 08:20:35 -03:00
|
|
|
if (err != 0) {
|
|
|
|
errno = err;
|
2011-05-07 20:46:11 -03:00
|
|
|
PyErr_SetFromErrno(PyExc_OSError);
|
2011-05-04 08:20:35 -03:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* if signals was unblocked, signal handlers have been called */
|
|
|
|
if (PyErr_CheckSignals())
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
return sigset_to_set(previous);
|
|
|
|
}
|
|
|
|
|
2011-04-30 10:21:58 -03:00
|
|
|
#endif /* #ifdef PYPTHREAD_SIGMASK */
|
|
|
|
|
2008-03-24 10:39:54 -03:00
|
|
|
|
2011-05-07 20:46:11 -03:00
|
|
|
#ifdef HAVE_SIGPENDING
|
2015-05-16 08:14:49 -03:00
|
|
|
|
|
|
|
/*[clinic input]
|
|
|
|
signal.sigpending
|
|
|
|
|
|
|
|
Examine pending signals.
|
|
|
|
|
|
|
|
Returns a set of signal numbers that are pending for delivery to
|
|
|
|
the calling thread.
|
|
|
|
[clinic start generated code]*/
|
|
|
|
|
2011-05-07 20:46:11 -03:00
|
|
|
static PyObject *
|
2016-07-07 11:35:15 -03:00
|
|
|
signal_sigpending_impl(PyObject *module)
|
|
|
|
/*[clinic end generated code: output=53375ffe89325022 input=e0036c016f874e29]*/
|
2011-05-07 20:46:11 -03:00
|
|
|
{
|
|
|
|
int err;
|
|
|
|
sigset_t mask;
|
|
|
|
err = sigpending(&mask);
|
|
|
|
if (err)
|
|
|
|
return PyErr_SetFromErrno(PyExc_OSError);
|
|
|
|
return sigset_to_set(mask);
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* #ifdef HAVE_SIGPENDING */
|
|
|
|
|
|
|
|
|
|
|
|
#ifdef HAVE_SIGWAIT
|
2015-05-16 08:14:49 -03:00
|
|
|
|
|
|
|
/*[clinic input]
|
|
|
|
signal.sigwait
|
|
|
|
|
2018-05-08 01:48:50 -03:00
|
|
|
sigset: sigset_t
|
2015-05-16 08:14:49 -03:00
|
|
|
/
|
|
|
|
|
|
|
|
Wait for a signal.
|
|
|
|
|
|
|
|
Suspend execution of the calling thread until the delivery of one of the
|
|
|
|
signals specified in the signal set sigset. The function accepts the signal
|
|
|
|
and returns the signal number.
|
|
|
|
[clinic start generated code]*/
|
|
|
|
|
2011-05-07 20:46:11 -03:00
|
|
|
static PyObject *
|
2018-05-08 01:48:50 -03:00
|
|
|
signal_sigwait_impl(PyObject *module, sigset_t sigset)
|
|
|
|
/*[clinic end generated code: output=f43770699d682f96 input=a6fbd47b1086d119]*/
|
2011-05-07 20:46:11 -03:00
|
|
|
{
|
|
|
|
int err, signum;
|
|
|
|
|
2011-06-09 20:39:53 -03:00
|
|
|
Py_BEGIN_ALLOW_THREADS
|
2018-05-08 01:48:50 -03:00
|
|
|
err = sigwait(&sigset, &signum);
|
2011-06-09 20:39:53 -03:00
|
|
|
Py_END_ALLOW_THREADS
|
2011-05-07 20:46:11 -03:00
|
|
|
if (err) {
|
|
|
|
errno = err;
|
|
|
|
return PyErr_SetFromErrno(PyExc_OSError);
|
|
|
|
}
|
|
|
|
|
|
|
|
return PyLong_FromLong(signum);
|
|
|
|
}
|
|
|
|
|
2015-05-16 08:14:49 -03:00
|
|
|
#endif /* #ifdef HAVE_SIGWAIT */
|
2021-11-25 07:28:41 -04:00
|
|
|
#endif /* #ifdef HAVE_SIGSET_T */
|
2015-05-16 08:14:49 -03:00
|
|
|
|
2021-11-25 07:28:41 -04:00
|
|
|
#if (defined(HAVE_SIGFILLSET) && defined(HAVE_SIGSET_T)) || defined(MS_WINDOWS)
|
2018-05-04 08:00:50 -03:00
|
|
|
|
|
|
|
/*[clinic input]
|
|
|
|
signal.valid_signals
|
|
|
|
|
|
|
|
Return a set of valid signal numbers on this platform.
|
|
|
|
|
|
|
|
The signal numbers returned by this function can be safely passed to
|
|
|
|
functions like `pthread_sigmask`.
|
|
|
|
[clinic start generated code]*/
|
|
|
|
|
|
|
|
static PyObject *
|
|
|
|
signal_valid_signals_impl(PyObject *module)
|
|
|
|
/*[clinic end generated code: output=1609cffbcfcf1314 input=86a3717ff25288f2]*/
|
|
|
|
{
|
|
|
|
#ifdef MS_WINDOWS
|
|
|
|
#ifdef SIGBREAK
|
|
|
|
PyObject *tup = Py_BuildValue("(iiiiiii)", SIGABRT, SIGBREAK, SIGFPE,
|
|
|
|
SIGILL, SIGINT, SIGSEGV, SIGTERM);
|
|
|
|
#else
|
|
|
|
PyObject *tup = Py_BuildValue("(iiiiii)", SIGABRT, SIGFPE, SIGILL,
|
|
|
|
SIGINT, SIGSEGV, SIGTERM);
|
|
|
|
#endif
|
|
|
|
if (tup == NULL) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
PyObject *set = PySet_New(tup);
|
|
|
|
Py_DECREF(tup);
|
|
|
|
return set;
|
|
|
|
#else
|
|
|
|
sigset_t mask;
|
|
|
|
if (sigemptyset(&mask) || sigfillset(&mask)) {
|
|
|
|
return PyErr_SetFromErrno(PyExc_OSError);
|
|
|
|
}
|
|
|
|
return sigset_to_set(mask);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2021-11-25 07:28:41 -04:00
|
|
|
#endif /* #if (defined(HAVE_SIGFILLSET) && defined(HAVE_SIGSET_T)) || defined(MS_WINDOWS) */
|
|
|
|
|
2018-05-04 08:00:50 -03:00
|
|
|
|
|
|
|
|
2011-06-25 07:13:40 -03:00
|
|
|
#if defined(HAVE_SIGWAITINFO) || defined(HAVE_SIGTIMEDWAIT)
|
|
|
|
static PyStructSequence_Field struct_siginfo_fields[] = {
|
|
|
|
{"si_signo", "signal number"},
|
|
|
|
{"si_code", "signal code"},
|
|
|
|
{"si_errno", "errno associated with this signal"},
|
|
|
|
{"si_pid", "sending process ID"},
|
|
|
|
{"si_uid", "real user ID of sending process"},
|
|
|
|
{"si_status", "exit value or signal"},
|
|
|
|
{"si_band", "band event for SIGPOLL"},
|
|
|
|
{0}
|
|
|
|
};
|
|
|
|
|
|
|
|
PyDoc_STRVAR(struct_siginfo__doc__,
|
|
|
|
"struct_siginfo: Result from sigwaitinfo or sigtimedwait.\n\n\
|
|
|
|
This object may be accessed either as a tuple of\n\
|
|
|
|
(si_signo, si_code, si_errno, si_pid, si_uid, si_status, si_band),\n\
|
|
|
|
or via the attributes si_signo, si_code, and so on.");
|
|
|
|
|
|
|
|
static PyStructSequence_Desc struct_siginfo_desc = {
|
|
|
|
"signal.struct_siginfo", /* name */
|
|
|
|
struct_siginfo__doc__, /* doc */
|
|
|
|
struct_siginfo_fields, /* fields */
|
|
|
|
7 /* n_in_sequence */
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
static PyObject *
|
2022-01-27 16:21:50 -04:00
|
|
|
fill_siginfo(_signal_module_state *state, siginfo_t *si)
|
2011-06-25 07:13:40 -03:00
|
|
|
{
|
2022-01-20 23:02:38 -04:00
|
|
|
PyObject *result = PyStructSequence_New(state->siginfo_type);
|
2011-06-25 07:13:40 -03:00
|
|
|
if (!result)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
PyStructSequence_SET_ITEM(result, 0, PyLong_FromLong((long)(si->si_signo)));
|
|
|
|
PyStructSequence_SET_ITEM(result, 1, PyLong_FromLong((long)(si->si_code)));
|
2019-05-10 18:39:09 -03:00
|
|
|
#ifdef __VXWORKS__
|
2019-03-13 14:18:25 -03:00
|
|
|
PyStructSequence_SET_ITEM(result, 2, PyLong_FromLong(0L));
|
|
|
|
PyStructSequence_SET_ITEM(result, 3, PyLong_FromLong(0L));
|
|
|
|
PyStructSequence_SET_ITEM(result, 4, PyLong_FromLong(0L));
|
|
|
|
PyStructSequence_SET_ITEM(result, 5, PyLong_FromLong(0L));
|
2019-05-10 18:39:09 -03:00
|
|
|
#else
|
2011-06-25 07:13:40 -03:00
|
|
|
PyStructSequence_SET_ITEM(result, 2, PyLong_FromLong((long)(si->si_errno)));
|
|
|
|
PyStructSequence_SET_ITEM(result, 3, PyLong_FromPid(si->si_pid));
|
2013-02-10 15:56:49 -04:00
|
|
|
PyStructSequence_SET_ITEM(result, 4, _PyLong_FromUid(si->si_uid));
|
2011-06-25 07:13:40 -03:00
|
|
|
PyStructSequence_SET_ITEM(result, 5,
|
|
|
|
PyLong_FromLong((long)(si->si_status)));
|
2019-05-10 18:39:09 -03:00
|
|
|
#endif
|
2016-10-01 02:47:27 -03:00
|
|
|
#ifdef HAVE_SIGINFO_T_SI_BAND
|
2011-06-25 07:13:40 -03:00
|
|
|
PyStructSequence_SET_ITEM(result, 6, PyLong_FromLong(si->si_band));
|
2016-10-01 02:47:27 -03:00
|
|
|
#else
|
|
|
|
PyStructSequence_SET_ITEM(result, 6, PyLong_FromLong(0L));
|
|
|
|
#endif
|
2011-06-25 07:13:40 -03:00
|
|
|
if (PyErr_Occurred()) {
|
|
|
|
Py_DECREF(result);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2021-11-25 07:28:41 -04:00
|
|
|
#ifdef HAVE_SIGSET_T
|
2011-06-25 07:13:40 -03:00
|
|
|
#ifdef HAVE_SIGWAITINFO
|
2015-05-16 08:14:49 -03:00
|
|
|
|
|
|
|
/*[clinic input]
|
|
|
|
signal.sigwaitinfo
|
|
|
|
|
2018-05-08 01:48:50 -03:00
|
|
|
sigset: sigset_t
|
2015-05-16 08:14:49 -03:00
|
|
|
/
|
|
|
|
|
|
|
|
Wait synchronously until one of the signals in *sigset* is delivered.
|
|
|
|
|
|
|
|
Returns a struct_siginfo containing information about the signal.
|
|
|
|
[clinic start generated code]*/
|
|
|
|
|
2011-06-25 07:13:40 -03:00
|
|
|
static PyObject *
|
2018-05-08 01:48:50 -03:00
|
|
|
signal_sigwaitinfo_impl(PyObject *module, sigset_t sigset)
|
|
|
|
/*[clinic end generated code: output=1eb2f1fa236fdbca input=3d1a7e1f27fc664c]*/
|
2011-06-25 07:13:40 -03:00
|
|
|
{
|
|
|
|
siginfo_t si;
|
|
|
|
int err;
|
2015-03-20 08:54:28 -03:00
|
|
|
int async_err = 0;
|
2011-06-25 07:13:40 -03:00
|
|
|
|
2015-03-20 08:54:28 -03:00
|
|
|
do {
|
|
|
|
Py_BEGIN_ALLOW_THREADS
|
2018-05-08 01:48:50 -03:00
|
|
|
err = sigwaitinfo(&sigset, &si);
|
2015-03-20 08:54:28 -03:00
|
|
|
Py_END_ALLOW_THREADS
|
|
|
|
} while (err == -1
|
|
|
|
&& errno == EINTR && !(async_err = PyErr_CheckSignals()));
|
2011-06-25 07:13:40 -03:00
|
|
|
if (err == -1)
|
2015-03-20 08:54:28 -03:00
|
|
|
return (!async_err) ? PyErr_SetFromErrno(PyExc_OSError) : NULL;
|
2011-06-25 07:13:40 -03:00
|
|
|
|
2022-01-27 16:21:50 -04:00
|
|
|
_signal_module_state *state = get_signal_state(module);
|
|
|
|
return fill_siginfo(state, &si);
|
2011-06-25 07:13:40 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* #ifdef HAVE_SIGWAITINFO */
|
|
|
|
|
|
|
|
#ifdef HAVE_SIGTIMEDWAIT
|
2015-05-16 08:14:49 -03:00
|
|
|
|
|
|
|
/*[clinic input]
|
|
|
|
signal.sigtimedwait
|
|
|
|
|
2018-05-08 01:48:50 -03:00
|
|
|
sigset: sigset_t
|
2015-05-16 09:57:56 -03:00
|
|
|
timeout as timeout_obj: object
|
2015-05-16 08:14:49 -03:00
|
|
|
/
|
|
|
|
|
|
|
|
Like sigwaitinfo(), but with a timeout.
|
|
|
|
|
|
|
|
The timeout is specified in seconds, with floating point numbers allowed.
|
|
|
|
[clinic start generated code]*/
|
|
|
|
|
2011-06-25 07:13:40 -03:00
|
|
|
static PyObject *
|
2018-05-08 01:48:50 -03:00
|
|
|
signal_sigtimedwait_impl(PyObject *module, sigset_t sigset,
|
2015-05-16 09:57:56 -03:00
|
|
|
PyObject *timeout_obj)
|
2018-05-08 01:48:50 -03:00
|
|
|
/*[clinic end generated code: output=59c8971e8ae18a64 input=87fd39237cf0b7ba]*/
|
2011-06-25 07:13:40 -03:00
|
|
|
{
|
2021-10-01 08:29:25 -03:00
|
|
|
_PyTime_t timeout;
|
2015-03-29 22:49:14 -03:00
|
|
|
if (_PyTime_FromSecondsObject(&timeout,
|
|
|
|
timeout_obj, _PyTime_ROUND_CEILING) < 0)
|
2011-06-25 07:13:40 -03:00
|
|
|
return NULL;
|
|
|
|
|
2015-03-20 08:54:28 -03:00
|
|
|
if (timeout < 0) {
|
2011-06-25 07:13:40 -03:00
|
|
|
PyErr_SetString(PyExc_ValueError, "timeout must be non-negative");
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2021-10-01 08:29:25 -03:00
|
|
|
_PyTime_t deadline = _PyDeadline_Init(timeout);
|
|
|
|
siginfo_t si;
|
2015-03-20 08:54:28 -03:00
|
|
|
|
|
|
|
do {
|
2021-10-01 08:29:25 -03:00
|
|
|
struct timespec ts;
|
|
|
|
if (_PyTime_AsTimespec(timeout, &ts) < 0) {
|
2015-03-27 14:19:03 -03:00
|
|
|
return NULL;
|
2021-10-01 08:29:25 -03:00
|
|
|
}
|
2015-03-20 08:54:28 -03:00
|
|
|
|
2021-10-01 08:29:25 -03:00
|
|
|
int res;
|
2015-03-20 08:54:28 -03:00
|
|
|
Py_BEGIN_ALLOW_THREADS
|
2018-05-08 01:48:50 -03:00
|
|
|
res = sigtimedwait(&sigset, &si, &ts);
|
2015-03-20 08:54:28 -03:00
|
|
|
Py_END_ALLOW_THREADS
|
|
|
|
|
|
|
|
if (res != -1)
|
|
|
|
break;
|
|
|
|
|
|
|
|
if (errno != EINTR) {
|
|
|
|
if (errno == EAGAIN)
|
|
|
|
Py_RETURN_NONE;
|
|
|
|
else
|
|
|
|
return PyErr_SetFromErrno(PyExc_OSError);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* sigtimedwait() was interrupted by a signal (EINTR) */
|
|
|
|
if (PyErr_CheckSignals())
|
|
|
|
return NULL;
|
|
|
|
|
2021-10-01 08:29:25 -03:00
|
|
|
timeout = _PyDeadline_Get(deadline);
|
|
|
|
if (timeout < 0) {
|
2015-03-20 08:54:28 -03:00
|
|
|
break;
|
2021-10-01 08:29:25 -03:00
|
|
|
}
|
2015-03-20 08:54:28 -03:00
|
|
|
} while (1);
|
2011-06-25 07:13:40 -03:00
|
|
|
|
2022-01-27 16:21:50 -04:00
|
|
|
_signal_module_state *state = get_signal_state(module);
|
|
|
|
return fill_siginfo(state, &si);
|
2011-06-25 07:13:40 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* #ifdef HAVE_SIGTIMEDWAIT */
|
2021-11-25 07:28:41 -04:00
|
|
|
#endif /* #ifdef HAVE_SIGSET_T */
|
2011-06-25 07:13:40 -03:00
|
|
|
|
2011-05-07 20:46:11 -03:00
|
|
|
|
2017-09-07 13:56:24 -03:00
|
|
|
#if defined(HAVE_PTHREAD_KILL)
|
2015-05-16 08:14:49 -03:00
|
|
|
|
|
|
|
/*[clinic input]
|
|
|
|
signal.pthread_kill
|
|
|
|
|
2017-03-23 10:48:39 -03:00
|
|
|
thread_id: unsigned_long(bitwise=True)
|
2015-05-16 08:14:49 -03:00
|
|
|
signalnum: int
|
|
|
|
/
|
|
|
|
|
|
|
|
Send a signal to a thread.
|
|
|
|
[clinic start generated code]*/
|
|
|
|
|
2011-05-07 20:46:11 -03:00
|
|
|
static PyObject *
|
2017-03-23 10:48:39 -03:00
|
|
|
signal_pthread_kill_impl(PyObject *module, unsigned long thread_id,
|
|
|
|
int signalnum)
|
|
|
|
/*[clinic end generated code: output=7629919b791bc27f input=1d901f2c7bb544ff]*/
|
2011-05-07 20:46:11 -03:00
|
|
|
{
|
|
|
|
int err;
|
|
|
|
|
2020-02-13 03:47:42 -04:00
|
|
|
if (PySys_Audit("signal.pthread_kill", "ki", thread_id, signalnum) < 0) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2015-05-16 08:14:49 -03:00
|
|
|
err = pthread_kill((pthread_t)thread_id, signalnum);
|
2011-05-07 20:46:11 -03:00
|
|
|
if (err != 0) {
|
|
|
|
errno = err;
|
|
|
|
PyErr_SetFromErrno(PyExc_OSError);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* the signal may have been send to the current thread */
|
|
|
|
if (PyErr_CheckSignals())
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
Py_RETURN_NONE;
|
|
|
|
}
|
|
|
|
|
2017-09-07 13:56:24 -03:00
|
|
|
#endif /* #if defined(HAVE_PTHREAD_KILL) */
|
2011-05-07 20:46:11 -03:00
|
|
|
|
|
|
|
|
2019-11-20 00:39:14 -04:00
|
|
|
#if defined(__linux__) && defined(__NR_pidfd_send_signal)
|
|
|
|
/*[clinic input]
|
|
|
|
signal.pidfd_send_signal
|
|
|
|
|
|
|
|
pidfd: int
|
|
|
|
signalnum: int
|
|
|
|
siginfo: object = None
|
|
|
|
flags: int = 0
|
|
|
|
/
|
|
|
|
|
|
|
|
Send a signal to a process referred to by a pid file descriptor.
|
|
|
|
[clinic start generated code]*/
|
|
|
|
|
|
|
|
static PyObject *
|
|
|
|
signal_pidfd_send_signal_impl(PyObject *module, int pidfd, int signalnum,
|
|
|
|
PyObject *siginfo, int flags)
|
|
|
|
/*[clinic end generated code: output=2d59f04a75d9cbdf input=2a6543a1f4ac2000]*/
|
|
|
|
|
|
|
|
{
|
|
|
|
if (siginfo != Py_None) {
|
|
|
|
PyErr_SetString(PyExc_TypeError, "siginfo must be None");
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
if (syscall(__NR_pidfd_send_signal, pidfd, signalnum, NULL, flags) < 0) {
|
|
|
|
PyErr_SetFromErrno(PyExc_OSError);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
Py_RETURN_NONE;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2011-05-07 20:46:11 -03:00
|
|
|
|
2015-05-16 08:14:49 -03:00
|
|
|
/* List of functions defined in the module -- some of the methoddefs are
|
|
|
|
defined to nothing if the corresponding C function is not available. */
|
1997-01-02 20:14:25 -04:00
|
|
|
static PyMethodDef signal_methods[] = {
|
2020-07-12 13:15:20 -03:00
|
|
|
SIGNAL_DEFAULT_INT_HANDLER_METHODDEF
|
2015-05-16 08:14:49 -03:00
|
|
|
SIGNAL_ALARM_METHODDEF
|
|
|
|
SIGNAL_SETITIMER_METHODDEF
|
|
|
|
SIGNAL_GETITIMER_METHODDEF
|
|
|
|
SIGNAL_SIGNAL_METHODDEF
|
2019-01-08 05:58:25 -04:00
|
|
|
SIGNAL_RAISE_SIGNAL_METHODDEF
|
2018-03-12 10:42:34 -03:00
|
|
|
SIGNAL_STRSIGNAL_METHODDEF
|
2015-05-16 08:14:49 -03:00
|
|
|
SIGNAL_GETSIGNAL_METHODDEF
|
2022-05-03 16:42:14 -03:00
|
|
|
{"set_wakeup_fd", _PyCFunction_CAST(signal_set_wakeup_fd), METH_VARARGS | METH_KEYWORDS, set_wakeup_fd_doc},
|
2015-05-16 08:14:49 -03:00
|
|
|
SIGNAL_SIGINTERRUPT_METHODDEF
|
|
|
|
SIGNAL_PAUSE_METHODDEF
|
2019-11-20 00:39:14 -04:00
|
|
|
SIGNAL_PIDFD_SEND_SIGNAL_METHODDEF
|
2015-05-16 08:14:49 -03:00
|
|
|
SIGNAL_PTHREAD_KILL_METHODDEF
|
|
|
|
SIGNAL_PTHREAD_SIGMASK_METHODDEF
|
|
|
|
SIGNAL_SIGPENDING_METHODDEF
|
|
|
|
SIGNAL_SIGWAIT_METHODDEF
|
|
|
|
SIGNAL_SIGWAITINFO_METHODDEF
|
|
|
|
SIGNAL_SIGTIMEDWAIT_METHODDEF
|
2018-05-04 08:00:50 -03:00
|
|
|
#if defined(HAVE_SIGFILLSET) || defined(MS_WINDOWS)
|
|
|
|
SIGNAL_VALID_SIGNALS_METHODDEF
|
|
|
|
#endif
|
2015-05-16 08:14:49 -03:00
|
|
|
{NULL, NULL} /* sentinel */
|
1994-05-11 05:59:13 -03:00
|
|
|
};
|
|
|
|
|
1997-01-02 20:14:25 -04:00
|
|
|
|
2002-06-13 17:33:02 -03:00
|
|
|
PyDoc_STRVAR(module_doc,
|
1998-06-28 13:54:49 -03:00
|
|
|
"This module provides mechanisms to use signal handlers in Python.\n\
|
|
|
|
\n\
|
|
|
|
Functions:\n\
|
|
|
|
\n\
|
|
|
|
alarm() -- cause SIGALRM after a specified time [Unix only]\n\
|
2008-03-24 10:39:54 -03:00
|
|
|
setitimer() -- cause a signal (described below) after a specified\n\
|
|
|
|
float time and the timer may restart then [Unix only]\n\
|
|
|
|
getitimer() -- get current value of timer [Unix only]\n\
|
1998-06-28 13:54:49 -03:00
|
|
|
signal() -- set the action for a given signal\n\
|
|
|
|
getsignal() -- get the signal action for a given signal\n\
|
|
|
|
pause() -- wait until a signal arrives [Unix only]\n\
|
|
|
|
default_int_handler() -- default SIGINT handler\n\
|
|
|
|
\n\
|
2008-03-24 10:39:54 -03:00
|
|
|
signal constants:\n\
|
1998-06-28 13:54:49 -03:00
|
|
|
SIG_DFL -- used to refer to the system default handler\n\
|
|
|
|
SIG_IGN -- used to ignore the signal\n\
|
|
|
|
NSIG -- number of defined signals\n\
|
|
|
|
SIGINT, SIGTERM, etc. -- signal numbers\n\
|
|
|
|
\n\
|
2008-03-24 10:39:54 -03:00
|
|
|
itimer constants:\n\
|
|
|
|
ITIMER_REAL -- decrements in real time, and delivers SIGALRM upon\n\
|
|
|
|
expiration\n\
|
|
|
|
ITIMER_VIRTUAL -- decrements only when the process is executing,\n\
|
|
|
|
and delivers SIGVTALRM upon expiration\n\
|
|
|
|
ITIMER_PROF -- decrements both when the process is executing and\n\
|
|
|
|
when the system is executing on behalf of the process.\n\
|
|
|
|
Coupled with ITIMER_VIRTUAL, this timer is usually\n\
|
|
|
|
used to profile the time spent by the application\n\
|
|
|
|
in user and kernel space. SIGPROF is delivered upon\n\
|
|
|
|
expiration.\n\
|
|
|
|
\n\n\
|
1998-06-28 13:54:49 -03:00
|
|
|
*** IMPORTANT NOTICE ***\n\
|
|
|
|
A signal handler function is called with two arguments:\n\
|
2002-06-13 17:33:02 -03:00
|
|
|
the first is the signal number, the second is the interrupted stack frame.");
|
1998-06-28 13:54:49 -03:00
|
|
|
|
1994-06-23 08:25:45 -03:00
|
|
|
|
2010-05-09 12:52:27 -03:00
|
|
|
|
2020-09-03 05:21:06 -03:00
|
|
|
static int
|
2020-11-17 13:57:32 -04:00
|
|
|
signal_add_constants(PyObject *module)
|
2020-09-03 05:21:06 -03:00
|
|
|
{
|
2022-04-25 19:13:31 -03:00
|
|
|
if (PyModule_AddIntConstant(module, "NSIG", Py_NSIG) < 0) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2020-11-17 13:57:32 -04:00
|
|
|
#define ADD_INT_MACRO(macro) \
|
|
|
|
if (PyModule_AddIntConstant(module, #macro, macro) < 0) { \
|
|
|
|
return -1; \
|
2013-07-22 17:24:54 -03:00
|
|
|
}
|
2010-05-09 12:52:27 -03:00
|
|
|
|
2020-11-17 13:57:32 -04:00
|
|
|
// SIG_xxx pthread_sigmask() constants
|
2011-04-30 10:21:58 -03:00
|
|
|
#ifdef SIG_BLOCK
|
2020-11-17 13:57:32 -04:00
|
|
|
ADD_INT_MACRO(SIG_BLOCK);
|
2011-04-30 10:21:58 -03:00
|
|
|
#endif
|
|
|
|
#ifdef SIG_UNBLOCK
|
2020-11-17 13:57:32 -04:00
|
|
|
ADD_INT_MACRO(SIG_UNBLOCK);
|
2011-04-30 10:21:58 -03:00
|
|
|
#endif
|
|
|
|
#ifdef SIG_SETMASK
|
2020-11-17 13:57:32 -04:00
|
|
|
ADD_INT_MACRO(SIG_SETMASK);
|
2011-04-30 10:21:58 -03:00
|
|
|
#endif
|
|
|
|
|
2020-11-17 13:57:32 -04:00
|
|
|
// SIGxxx signal number constants
|
1994-05-11 05:59:13 -03:00
|
|
|
#ifdef SIGHUP
|
2020-11-17 13:57:32 -04:00
|
|
|
ADD_INT_MACRO(SIGHUP);
|
1994-05-11 05:59:13 -03:00
|
|
|
#endif
|
|
|
|
#ifdef SIGINT
|
2020-11-17 13:57:32 -04:00
|
|
|
ADD_INT_MACRO(SIGINT);
|
1994-05-11 05:59:13 -03:00
|
|
|
#endif
|
2001-10-01 14:58:40 -03:00
|
|
|
#ifdef SIGBREAK
|
2020-11-17 13:57:32 -04:00
|
|
|
ADD_INT_MACRO(SIGBREAK);
|
2001-10-01 14:58:40 -03:00
|
|
|
#endif
|
1994-05-11 05:59:13 -03:00
|
|
|
#ifdef SIGQUIT
|
2020-11-17 13:57:32 -04:00
|
|
|
ADD_INT_MACRO(SIGQUIT);
|
1994-05-11 05:59:13 -03:00
|
|
|
#endif
|
|
|
|
#ifdef SIGILL
|
2020-11-17 13:57:32 -04:00
|
|
|
ADD_INT_MACRO(SIGILL);
|
1994-05-11 05:59:13 -03:00
|
|
|
#endif
|
|
|
|
#ifdef SIGTRAP
|
2020-11-17 13:57:32 -04:00
|
|
|
ADD_INT_MACRO(SIGTRAP);
|
1994-05-11 05:59:13 -03:00
|
|
|
#endif
|
|
|
|
#ifdef SIGIOT
|
2020-11-17 13:57:32 -04:00
|
|
|
ADD_INT_MACRO(SIGIOT);
|
1994-05-11 05:59:13 -03:00
|
|
|
#endif
|
|
|
|
#ifdef SIGABRT
|
2020-11-17 13:57:32 -04:00
|
|
|
ADD_INT_MACRO(SIGABRT);
|
1994-05-11 05:59:13 -03:00
|
|
|
#endif
|
|
|
|
#ifdef SIGEMT
|
2020-11-17 13:57:32 -04:00
|
|
|
ADD_INT_MACRO(SIGEMT);
|
1994-05-11 05:59:13 -03:00
|
|
|
#endif
|
|
|
|
#ifdef SIGFPE
|
2020-11-17 13:57:32 -04:00
|
|
|
ADD_INT_MACRO(SIGFPE);
|
1994-05-11 05:59:13 -03:00
|
|
|
#endif
|
|
|
|
#ifdef SIGKILL
|
2020-11-17 13:57:32 -04:00
|
|
|
ADD_INT_MACRO(SIGKILL);
|
1994-05-11 05:59:13 -03:00
|
|
|
#endif
|
|
|
|
#ifdef SIGBUS
|
2020-11-17 13:57:32 -04:00
|
|
|
ADD_INT_MACRO(SIGBUS);
|
1994-05-11 05:59:13 -03:00
|
|
|
#endif
|
|
|
|
#ifdef SIGSEGV
|
2020-11-17 13:57:32 -04:00
|
|
|
ADD_INT_MACRO(SIGSEGV);
|
1994-05-11 05:59:13 -03:00
|
|
|
#endif
|
|
|
|
#ifdef SIGSYS
|
2020-11-17 13:57:32 -04:00
|
|
|
ADD_INT_MACRO(SIGSYS);
|
1994-05-11 05:59:13 -03:00
|
|
|
#endif
|
|
|
|
#ifdef SIGPIPE
|
2020-11-17 13:57:32 -04:00
|
|
|
ADD_INT_MACRO(SIGPIPE);
|
1994-05-11 05:59:13 -03:00
|
|
|
#endif
|
|
|
|
#ifdef SIGALRM
|
2020-11-17 13:57:32 -04:00
|
|
|
ADD_INT_MACRO(SIGALRM);
|
1994-05-11 05:59:13 -03:00
|
|
|
#endif
|
|
|
|
#ifdef SIGTERM
|
2020-11-17 13:57:32 -04:00
|
|
|
ADD_INT_MACRO(SIGTERM);
|
1994-05-11 05:59:13 -03:00
|
|
|
#endif
|
|
|
|
#ifdef SIGUSR1
|
2020-11-17 13:57:32 -04:00
|
|
|
ADD_INT_MACRO(SIGUSR1);
|
1994-05-11 05:59:13 -03:00
|
|
|
#endif
|
|
|
|
#ifdef SIGUSR2
|
2020-11-17 13:57:32 -04:00
|
|
|
ADD_INT_MACRO(SIGUSR2);
|
1994-05-11 05:59:13 -03:00
|
|
|
#endif
|
|
|
|
#ifdef SIGCLD
|
2020-11-17 13:57:32 -04:00
|
|
|
ADD_INT_MACRO(SIGCLD);
|
1994-05-11 05:59:13 -03:00
|
|
|
#endif
|
|
|
|
#ifdef SIGCHLD
|
2020-11-17 13:57:32 -04:00
|
|
|
ADD_INT_MACRO(SIGCHLD);
|
1994-05-11 05:59:13 -03:00
|
|
|
#endif
|
|
|
|
#ifdef SIGPWR
|
2020-11-17 13:57:32 -04:00
|
|
|
ADD_INT_MACRO(SIGPWR);
|
1994-05-11 05:59:13 -03:00
|
|
|
#endif
|
|
|
|
#ifdef SIGIO
|
2020-11-17 13:57:32 -04:00
|
|
|
ADD_INT_MACRO(SIGIO);
|
1994-05-11 05:59:13 -03:00
|
|
|
#endif
|
|
|
|
#ifdef SIGURG
|
2020-11-17 13:57:32 -04:00
|
|
|
ADD_INT_MACRO(SIGURG);
|
1994-05-11 05:59:13 -03:00
|
|
|
#endif
|
|
|
|
#ifdef SIGWINCH
|
2020-11-17 13:57:32 -04:00
|
|
|
ADD_INT_MACRO(SIGWINCH);
|
1994-05-11 05:59:13 -03:00
|
|
|
#endif
|
|
|
|
#ifdef SIGPOLL
|
2020-11-17 13:57:32 -04:00
|
|
|
ADD_INT_MACRO(SIGPOLL);
|
1994-05-11 05:59:13 -03:00
|
|
|
#endif
|
|
|
|
#ifdef SIGSTOP
|
2020-11-17 13:57:32 -04:00
|
|
|
ADD_INT_MACRO(SIGSTOP);
|
1994-05-11 05:59:13 -03:00
|
|
|
#endif
|
|
|
|
#ifdef SIGTSTP
|
2020-11-17 13:57:32 -04:00
|
|
|
ADD_INT_MACRO(SIGTSTP);
|
1994-05-11 05:59:13 -03:00
|
|
|
#endif
|
|
|
|
#ifdef SIGCONT
|
2020-11-17 13:57:32 -04:00
|
|
|
ADD_INT_MACRO(SIGCONT);
|
1994-05-11 05:59:13 -03:00
|
|
|
#endif
|
|
|
|
#ifdef SIGTTIN
|
2020-11-17 13:57:32 -04:00
|
|
|
ADD_INT_MACRO(SIGTTIN);
|
1994-05-11 05:59:13 -03:00
|
|
|
#endif
|
|
|
|
#ifdef SIGTTOU
|
2020-11-17 13:57:32 -04:00
|
|
|
ADD_INT_MACRO(SIGTTOU);
|
1994-05-11 05:59:13 -03:00
|
|
|
#endif
|
|
|
|
#ifdef SIGVTALRM
|
2020-11-17 13:57:32 -04:00
|
|
|
ADD_INT_MACRO(SIGVTALRM);
|
1994-05-11 05:59:13 -03:00
|
|
|
#endif
|
|
|
|
#ifdef SIGPROF
|
2020-11-17 13:57:32 -04:00
|
|
|
ADD_INT_MACRO(SIGPROF);
|
1994-05-11 05:59:13 -03:00
|
|
|
#endif
|
1996-12-16 16:24:22 -04:00
|
|
|
#ifdef SIGXCPU
|
2020-11-17 13:57:32 -04:00
|
|
|
ADD_INT_MACRO(SIGXCPU);
|
1996-12-16 16:24:22 -04:00
|
|
|
#endif
|
|
|
|
#ifdef SIGXFSZ
|
2020-11-17 13:57:32 -04:00
|
|
|
ADD_INT_MACRO(SIGXFSZ);
|
2002-01-12 07:43:25 -04:00
|
|
|
#endif
|
2003-07-31 07:35:29 -03:00
|
|
|
#ifdef SIGRTMIN
|
2020-11-17 13:57:32 -04:00
|
|
|
ADD_INT_MACRO(SIGRTMIN);
|
2003-07-31 07:35:29 -03:00
|
|
|
#endif
|
|
|
|
#ifdef SIGRTMAX
|
2020-11-17 13:57:32 -04:00
|
|
|
ADD_INT_MACRO(SIGRTMAX);
|
2003-07-31 07:35:29 -03:00
|
|
|
#endif
|
2002-01-12 07:43:25 -04:00
|
|
|
#ifdef SIGINFO
|
2020-11-17 13:57:32 -04:00
|
|
|
ADD_INT_MACRO(SIGINFO);
|
1994-05-11 05:59:13 -03:00
|
|
|
#endif
|
2021-12-13 13:22:43 -04:00
|
|
|
#ifdef SIGSTKFLT
|
|
|
|
ADD_INT_MACRO(SIGSTKFLT);
|
|
|
|
#endif
|
2008-03-24 10:39:54 -03:00
|
|
|
|
2020-11-17 13:57:32 -04:00
|
|
|
// ITIMER_xxx constants
|
2008-03-24 10:39:54 -03:00
|
|
|
#ifdef ITIMER_REAL
|
2020-11-17 13:57:32 -04:00
|
|
|
ADD_INT_MACRO(ITIMER_REAL);
|
2008-03-24 10:39:54 -03:00
|
|
|
#endif
|
|
|
|
#ifdef ITIMER_VIRTUAL
|
2020-11-17 13:57:32 -04:00
|
|
|
ADD_INT_MACRO(ITIMER_VIRTUAL);
|
2008-03-24 10:39:54 -03:00
|
|
|
#endif
|
|
|
|
#ifdef ITIMER_PROF
|
2020-11-17 13:57:32 -04:00
|
|
|
ADD_INT_MACRO(ITIMER_PROF);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// CTRL_xxx Windows signals
|
|
|
|
#ifdef CTRL_C_EVENT
|
|
|
|
ADD_INT_MACRO(CTRL_C_EVENT);
|
|
|
|
#endif
|
|
|
|
#ifdef CTRL_BREAK_EVENT
|
|
|
|
ADD_INT_MACRO(CTRL_BREAK_EVENT);
|
2008-03-24 10:39:54 -03:00
|
|
|
#endif
|
|
|
|
|
2020-11-17 13:57:32 -04:00
|
|
|
return 0;
|
|
|
|
|
|
|
|
#undef ADD_INT_MACRO
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int
|
2021-04-27 22:02:55 -03:00
|
|
|
signal_get_set_handlers(signal_state_t *state, PyObject *mod_dict)
|
2020-11-17 13:57:32 -04:00
|
|
|
{
|
|
|
|
// Get signal handlers
|
2022-04-25 19:13:31 -03:00
|
|
|
for (int signum = 1; signum < Py_NSIG; signum++) {
|
2020-11-17 13:57:32 -04:00
|
|
|
void (*c_handler)(int) = PyOS_getsig(signum);
|
2020-11-17 18:28:25 -04:00
|
|
|
PyObject *func;
|
2020-11-17 13:57:32 -04:00
|
|
|
if (c_handler == SIG_DFL) {
|
2021-04-27 22:02:55 -03:00
|
|
|
func = state->default_handler;
|
2020-11-17 13:57:32 -04:00
|
|
|
}
|
|
|
|
else if (c_handler == SIG_IGN) {
|
2021-04-27 22:02:55 -03:00
|
|
|
func = state->ignore_handler;
|
2020-11-17 13:57:32 -04:00
|
|
|
}
|
|
|
|
else {
|
2020-11-17 18:28:25 -04:00
|
|
|
func = Py_None; // None of our business
|
2020-11-17 13:57:32 -04:00
|
|
|
}
|
2020-11-17 18:28:25 -04:00
|
|
|
// If signal_module_exec() is called more than one, we must
|
|
|
|
// clear the strong reference to the previous function.
|
2021-03-11 18:35:45 -04:00
|
|
|
PyObject* old_func = get_handler(signum);
|
2021-04-27 22:02:55 -03:00
|
|
|
set_handler(signum, Py_NewRef(func));
|
2021-03-11 18:35:45 -04:00
|
|
|
Py_XDECREF(old_func);
|
2020-11-17 13:57:32 -04:00
|
|
|
}
|
2010-04-12 14:16:38 -03:00
|
|
|
|
2021-10-07 05:34:42 -03:00
|
|
|
// Install Python SIGINT handler which raises KeyboardInterrupt
|
2021-03-11 18:35:45 -04:00
|
|
|
PyObject* sigint_func = get_handler(SIGINT);
|
2021-04-27 22:02:55 -03:00
|
|
|
if (sigint_func == state->default_handler) {
|
2021-04-27 20:50:04 -03:00
|
|
|
PyObject *int_handler = PyMapping_GetItemString(mod_dict,
|
|
|
|
"default_int_handler");
|
2020-11-17 13:57:32 -04:00
|
|
|
if (!int_handler) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2021-04-27 22:02:55 -03:00
|
|
|
set_handler(SIGINT, int_handler);
|
2021-03-11 18:35:45 -04:00
|
|
|
Py_DECREF(sigint_func);
|
2020-11-17 13:57:32 -04:00
|
|
|
PyOS_setsig(SIGINT, signal_handler);
|
2008-06-11 02:26:20 -03:00
|
|
|
}
|
2021-04-27 20:50:04 -03:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int
|
|
|
|
signal_module_exec(PyObject *m)
|
|
|
|
{
|
|
|
|
assert(!PyErr_Occurred());
|
|
|
|
|
2021-04-27 22:02:55 -03:00
|
|
|
signal_state_t *state = &signal_global_state;
|
|
|
|
_signal_module_state *modstate = get_signal_state(m);
|
|
|
|
|
2022-12-12 19:50:19 -04:00
|
|
|
// XXX For proper isolation, these values must be guaranteed
|
|
|
|
// to be effectively const (e.g. immortal).
|
2021-04-27 22:02:55 -03:00
|
|
|
modstate->default_handler = state->default_handler; // borrowed ref
|
|
|
|
modstate->ignore_handler = state->ignore_handler; // borrowed ref
|
|
|
|
|
|
|
|
#ifdef PYHAVE_ITIMER_ERROR
|
|
|
|
modstate->itimer_error = PyErr_NewException("signal.itimer_error",
|
|
|
|
PyExc_OSError, NULL);
|
|
|
|
if (modstate->itimer_error == NULL) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2021-04-27 20:50:04 -03:00
|
|
|
if (signal_add_constants(m) < 0) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Add some symbolic constants to the module */
|
|
|
|
PyObject *d = PyModule_GetDict(m);
|
2021-04-27 22:02:55 -03:00
|
|
|
if (PyDict_SetItemString(d, "SIG_DFL", state->default_handler) < 0) {
|
2021-04-27 20:50:04 -03:00
|
|
|
return -1;
|
|
|
|
}
|
2021-04-27 22:02:55 -03:00
|
|
|
if (PyDict_SetItemString(d, "SIG_IGN", state->ignore_handler) < 0) {
|
2021-04-27 20:50:04 -03:00
|
|
|
return -1;
|
|
|
|
}
|
2021-04-27 22:02:55 -03:00
|
|
|
#ifdef PYHAVE_ITIMER_ERROR
|
|
|
|
if (PyDict_SetItemString(d, "ItimerError", modstate->itimer_error) < 0) {
|
2021-04-27 20:50:04 -03:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
#endif
|
2022-01-27 16:21:50 -04:00
|
|
|
|
|
|
|
#if defined(HAVE_SIGWAITINFO) || defined(HAVE_SIGTIMEDWAIT)
|
|
|
|
modstate->siginfo_type = PyStructSequence_NewType(&struct_siginfo_desc);
|
|
|
|
if (modstate->siginfo_type == NULL) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
#endif
|
2021-04-27 20:50:04 -03:00
|
|
|
#if defined(HAVE_SIGWAITINFO) || defined(HAVE_SIGTIMEDWAIT)
|
2022-01-27 16:21:50 -04:00
|
|
|
if (PyModule_AddType(m, modstate->siginfo_type) < 0) {
|
2021-04-27 20:50:04 -03:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
PyThreadState *tstate = _PyThreadState_GET();
|
|
|
|
if (_Py_IsMainInterpreter(tstate->interp)) {
|
2021-04-27 22:02:55 -03:00
|
|
|
if (signal_get_set_handlers(state, d) < 0) {
|
2021-04-27 20:50:04 -03:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
}
|
1997-01-02 20:14:25 -04:00
|
|
|
|
2020-11-17 13:57:32 -04:00
|
|
|
assert(!PyErr_Occurred());
|
|
|
|
return 0;
|
2020-09-03 05:21:06 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2021-04-27 22:02:55 -03:00
|
|
|
#ifdef PYHAVE_ITIMER_ERROR
|
|
|
|
static int
|
|
|
|
_signal_module_traverse(PyObject *module, visitproc visit, void *arg)
|
|
|
|
{
|
2022-01-27 16:21:50 -04:00
|
|
|
_signal_module_state *state = get_signal_state(module);
|
|
|
|
Py_VISIT(state->itimer_error);
|
|
|
|
Py_VISIT(state->siginfo_type);
|
2021-04-27 22:02:55 -03:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
_signal_module_clear(PyObject *module)
|
|
|
|
{
|
2022-01-27 16:21:50 -04:00
|
|
|
_signal_module_state *state = get_signal_state(module);
|
|
|
|
Py_CLEAR(state->itimer_error);
|
|
|
|
Py_CLEAR(state->siginfo_type);
|
2021-04-27 22:02:55 -03:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
_signal_module_free(void *module)
|
|
|
|
{
|
|
|
|
_signal_module_clear((PyObject *)module);
|
|
|
|
}
|
|
|
|
#endif // PYHAVE_ITIMER_ERROR
|
|
|
|
|
|
|
|
|
2020-11-17 18:28:25 -04:00
|
|
|
static PyModuleDef_Slot signal_slots[] = {
|
|
|
|
{Py_mod_exec, signal_module_exec},
|
2023-05-05 18:11:27 -03:00
|
|
|
{Py_mod_multiple_interpreters, Py_MOD_PER_INTERPRETER_GIL_SUPPORTED},
|
2020-11-17 18:28:25 -04:00
|
|
|
{0, NULL}
|
|
|
|
};
|
|
|
|
|
|
|
|
static struct PyModuleDef signal_module = {
|
2020-09-03 05:21:06 -03:00
|
|
|
PyModuleDef_HEAD_INIT,
|
|
|
|
"_signal",
|
|
|
|
.m_doc = module_doc,
|
2021-04-27 22:02:55 -03:00
|
|
|
.m_size = sizeof(_signal_module_state),
|
2020-09-03 05:21:06 -03:00
|
|
|
.m_methods = signal_methods,
|
2020-11-17 18:28:25 -04:00
|
|
|
.m_slots = signal_slots,
|
2021-04-27 22:02:55 -03:00
|
|
|
#ifdef PYHAVE_ITIMER_ERROR
|
|
|
|
.m_traverse = _signal_module_traverse,
|
|
|
|
.m_clear = _signal_module_clear,
|
|
|
|
.m_free = _signal_module_free,
|
|
|
|
#endif
|
2020-09-03 05:21:06 -03:00
|
|
|
};
|
|
|
|
|
2020-09-04 09:51:05 -03:00
|
|
|
|
2020-09-03 05:21:06 -03:00
|
|
|
PyMODINIT_FUNC
|
|
|
|
PyInit__signal(void)
|
|
|
|
{
|
2020-11-17 18:28:25 -04:00
|
|
|
return PyModuleDef_Init(&signal_module);
|
1997-08-02 00:01:42 -03:00
|
|
|
}
|
|
|
|
|
2020-09-04 09:51:05 -03:00
|
|
|
|
2020-11-17 11:22:23 -04:00
|
|
|
void
|
|
|
|
_PySignal_Fini(void)
|
1997-08-02 00:01:42 -03:00
|
|
|
{
|
2021-04-27 22:02:55 -03:00
|
|
|
signal_state_t *state = &signal_global_state;
|
|
|
|
|
2020-11-17 13:15:20 -04:00
|
|
|
// Restore default signals and clear handlers
|
2022-04-25 19:13:31 -03:00
|
|
|
for (int signum = 1; signum < Py_NSIG; signum++) {
|
2021-03-11 18:35:45 -04:00
|
|
|
PyObject *func = get_handler(signum);
|
2023-10-09 20:26:29 -03:00
|
|
|
_Py_atomic_store_int_relaxed(&Handlers[signum].tripped, 0);
|
2021-04-27 22:02:55 -03:00
|
|
|
set_handler(signum, NULL);
|
2020-11-17 13:15:20 -04:00
|
|
|
if (func != NULL
|
|
|
|
&& func != Py_None
|
2022-03-08 14:22:32 -04:00
|
|
|
&& !compare_handler(func, state->default_handler)
|
|
|
|
&& !compare_handler(func, state->ignore_handler))
|
2020-11-17 13:15:20 -04:00
|
|
|
{
|
|
|
|
PyOS_setsig(signum, SIG_DFL);
|
|
|
|
}
|
2010-05-09 12:52:27 -03:00
|
|
|
Py_XDECREF(func);
|
|
|
|
}
|
|
|
|
|
2020-11-17 13:15:20 -04:00
|
|
|
#ifdef MS_WINDOWS
|
2021-04-27 22:02:55 -03:00
|
|
|
if (state->sigint_event != NULL) {
|
2022-12-12 19:50:19 -04:00
|
|
|
CloseHandle((HANDLE)state->sigint_event);
|
2021-04-27 22:02:55 -03:00
|
|
|
state->sigint_event = NULL;
|
2020-11-17 13:15:20 -04:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2021-04-27 22:02:55 -03:00
|
|
|
Py_CLEAR(state->default_handler);
|
|
|
|
Py_CLEAR(state->ignore_handler);
|
1994-05-11 05:59:13 -03:00
|
|
|
}
|
|
|
|
|
1997-01-02 20:14:25 -04:00
|
|
|
|
|
|
|
/* Declared in pyerrors.h */
|
1994-05-11 05:59:13 -03:00
|
|
|
int
|
2000-07-21 03:00:07 -03:00
|
|
|
PyErr_CheckSignals(void)
|
2019-02-23 18:40:43 -04:00
|
|
|
{
|
2020-03-26 18:28:11 -03:00
|
|
|
PyThreadState *tstate = _PyThreadState_GET();
|
2022-10-08 11:57:09 -03:00
|
|
|
|
|
|
|
/* Opportunistically check if the GC is scheduled to run and run it
|
|
|
|
if we have a request. This is done here because native code needs
|
|
|
|
to call this API if is going to run for some time without executing
|
|
|
|
Python code to ensure signals are handled. Checking for the GC here
|
|
|
|
allows long running native code to clean cycles created using the C-API
|
|
|
|
even if it doesn't run the evaluation loop */
|
2023-10-04 12:09:48 -03:00
|
|
|
if (_Py_eval_breaker_bit_is_set(tstate->interp, _PY_GC_SCHEDULED_BIT)) {
|
|
|
|
_Py_set_eval_breaker_bit(tstate->interp, _PY_GC_SCHEDULED_BIT, 0);
|
2022-10-08 11:57:09 -03:00
|
|
|
_Py_RunGC(tstate);
|
|
|
|
}
|
|
|
|
|
2020-04-08 18:35:05 -03:00
|
|
|
if (!_Py_ThreadCanHandleSignals(tstate->interp)) {
|
2019-02-23 18:40:43 -04:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2020-03-26 18:28:11 -03:00
|
|
|
return _PyErr_CheckSignalsTstate(tstate);
|
2019-02-23 18:40:43 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* Declared in cpython/pyerrors.h */
|
|
|
|
int
|
2020-03-26 18:28:11 -03:00
|
|
|
_PyErr_CheckSignalsTstate(PyThreadState *tstate)
|
1994-05-11 05:59:13 -03:00
|
|
|
{
|
2022-04-03 17:58:52 -03:00
|
|
|
_Py_CHECK_EMSCRIPTEN_SIGNALS();
|
2023-10-09 20:26:29 -03:00
|
|
|
if (!_Py_atomic_load_int(&is_tripped)) {
|
2010-05-09 12:52:27 -03:00
|
|
|
return 0;
|
2020-03-26 18:28:11 -03:00
|
|
|
}
|
2007-12-10 21:06:40 -04:00
|
|
|
|
2010-05-09 12:52:27 -03:00
|
|
|
/*
|
|
|
|
* The is_tripped variable is meant to speed up the calls to
|
|
|
|
* PyErr_CheckSignals (both directly or via pending calls) when no
|
|
|
|
* signal has arrived. This variable is set to 1 when a signal arrives
|
|
|
|
* and it is set to 0 here, when we know some signals arrived. This way
|
|
|
|
* we can run the registered handlers with no signals blocked.
|
|
|
|
*
|
|
|
|
* NOTE: with this approach we can have a situation where is_tripped is
|
|
|
|
* 1 but we have no more signals to handle (Handlers[i].tripped
|
|
|
|
* is 0 for every signal i). This won't do us any harm (except
|
|
|
|
* we're gonna spent some cycles for nothing). This happens when
|
|
|
|
* we receive a signal i after we zero is_tripped and before we
|
|
|
|
* check Handlers[i].tripped.
|
|
|
|
*/
|
2023-10-09 20:26:29 -03:00
|
|
|
_Py_atomic_store_int(&is_tripped, 0);
|
2010-05-09 12:52:27 -03:00
|
|
|
|
2023-01-09 16:20:04 -04:00
|
|
|
_PyInterpreterFrame *frame = _PyThreadState_GetFrame(tstate);
|
2021-04-27 22:02:55 -03:00
|
|
|
signal_state_t *state = &signal_global_state;
|
2022-04-25 19:13:31 -03:00
|
|
|
for (int i = 1; i < Py_NSIG; i++) {
|
2023-10-09 20:26:29 -03:00
|
|
|
if (!_Py_atomic_load_int_relaxed(&Handlers[i].tripped)) {
|
2020-03-26 18:28:11 -03:00
|
|
|
continue;
|
|
|
|
}
|
2023-10-09 20:26:29 -03:00
|
|
|
_Py_atomic_store_int_relaxed(&Handlers[i].tripped, 0);
|
2010-05-09 12:52:27 -03:00
|
|
|
|
2021-03-05 05:32:50 -04:00
|
|
|
/* Signal handlers can be modified while a signal is received,
|
|
|
|
* and therefore the fact that trip_signal() or PyErr_SetInterrupt()
|
|
|
|
* was called doesn't guarantee that there is still a Python
|
|
|
|
* signal handler for it by the time PyErr_CheckSignals() is called
|
|
|
|
* (see bpo-43406).
|
|
|
|
*/
|
2021-03-11 18:35:45 -04:00
|
|
|
PyObject *func = get_handler(i);
|
2022-03-08 14:22:32 -04:00
|
|
|
if (func == NULL || func == Py_None ||
|
|
|
|
compare_handler(func, state->ignore_handler) ||
|
|
|
|
compare_handler(func, state->default_handler)) {
|
2021-03-05 05:32:50 -04:00
|
|
|
/* No Python signal handler due to aforementioned race condition.
|
|
|
|
* We can't call raise() as it would break the assumption
|
|
|
|
* that PyErr_SetInterrupt() only *simulates* an incoming
|
|
|
|
* signal (i.e. it will never kill the process).
|
|
|
|
* We also don't want to interrupt user code with a cryptic
|
|
|
|
* asynchronous exception, so instead just write out an
|
|
|
|
* unraisable error.
|
|
|
|
*/
|
|
|
|
PyErr_Format(PyExc_OSError,
|
|
|
|
"Signal %i ignored due to race condition",
|
|
|
|
i);
|
|
|
|
PyErr_WriteUnraisable(Py_None);
|
|
|
|
continue;
|
|
|
|
}
|
2021-07-26 07:22:16 -03:00
|
|
|
PyObject *arglist = NULL;
|
|
|
|
if (frame == NULL) {
|
|
|
|
arglist = Py_BuildValue("(iO)", i, Py_None);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
PyFrameObject *f = _PyFrame_GetFrameObject(frame);
|
|
|
|
if (f != NULL) {
|
|
|
|
arglist = Py_BuildValue("(iO)", i, f);
|
|
|
|
}
|
|
|
|
}
|
2020-03-26 18:28:11 -03:00
|
|
|
PyObject *result;
|
|
|
|
if (arglist) {
|
2021-03-05 05:32:50 -04:00
|
|
|
result = _PyObject_Call(tstate, func, arglist, NULL);
|
2020-03-26 18:28:11 -03:00
|
|
|
Py_DECREF(arglist);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
result = NULL;
|
|
|
|
}
|
|
|
|
if (!result) {
|
|
|
|
/* On error, re-schedule a call to _PyErr_CheckSignalsTstate() */
|
2023-10-09 20:26:29 -03:00
|
|
|
_Py_atomic_store_int(&is_tripped, 1);
|
2020-03-26 18:28:11 -03:00
|
|
|
return -1;
|
2010-05-09 12:52:27 -03:00
|
|
|
}
|
2020-03-26 18:28:11 -03:00
|
|
|
|
|
|
|
Py_DECREF(result);
|
2010-05-09 12:52:27 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
1994-05-11 05:59:13 -03:00
|
|
|
}
|
|
|
|
|
2000-09-16 13:35:28 -03:00
|
|
|
|
2020-03-26 18:28:11 -03:00
|
|
|
|
|
|
|
int
|
|
|
|
_PyErr_CheckSignals(void)
|
|
|
|
{
|
|
|
|
PyThreadState *tstate = _PyThreadState_GET();
|
|
|
|
return _PyErr_CheckSignalsTstate(tstate);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2021-03-11 18:35:45 -04:00
|
|
|
/* Simulate the effect of a signal arriving. The next time PyErr_CheckSignals
|
|
|
|
is called, the corresponding Python signal handler will be raised.
|
|
|
|
|
|
|
|
Missing signal handler for the given signal number is silently ignored. */
|
|
|
|
int
|
|
|
|
PyErr_SetInterruptEx(int signum)
|
|
|
|
{
|
2022-04-25 19:13:31 -03:00
|
|
|
if (signum < 1 || signum >= Py_NSIG) {
|
2021-03-11 18:35:45 -04:00
|
|
|
return -1;
|
|
|
|
}
|
2021-04-27 22:02:55 -03:00
|
|
|
|
|
|
|
signal_state_t *state = &signal_global_state;
|
|
|
|
PyObject *func = get_handler(signum);
|
2022-03-08 14:22:32 -04:00
|
|
|
if (!compare_handler(func, state->ignore_handler)
|
|
|
|
&& !compare_handler(func, state->default_handler)) {
|
2021-03-11 18:35:45 -04:00
|
|
|
trip_signal(signum);
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
2019-05-23 17:30:00 -03:00
|
|
|
|
1997-01-02 20:14:25 -04:00
|
|
|
void
|
2000-07-21 03:00:07 -03:00
|
|
|
PyErr_SetInterrupt(void)
|
1997-01-02 20:14:25 -04:00
|
|
|
{
|
2021-03-11 18:35:45 -04:00
|
|
|
(void) PyErr_SetInterruptEx(SIGINT);
|
1997-01-02 20:14:25 -04:00
|
|
|
}
|
1994-05-11 05:59:13 -03:00
|
|
|
|
2020-11-17 13:15:20 -04:00
|
|
|
static int
|
|
|
|
signal_install_handlers(void)
|
1994-05-11 05:59:13 -03:00
|
|
|
{
|
2020-11-17 11:22:23 -04:00
|
|
|
#ifdef SIGPIPE
|
|
|
|
PyOS_setsig(SIGPIPE, SIG_IGN);
|
|
|
|
#endif
|
|
|
|
#ifdef SIGXFZ
|
|
|
|
PyOS_setsig(SIGXFZ, SIG_IGN);
|
|
|
|
#endif
|
|
|
|
#ifdef SIGXFSZ
|
|
|
|
PyOS_setsig(SIGXFSZ, SIG_IGN);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// Import _signal to install the Python SIGINT handler
|
|
|
|
PyObject *module = PyImport_ImportModule("_signal");
|
|
|
|
if (!module) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
Py_DECREF(module);
|
|
|
|
|
|
|
|
return 0;
|
1994-05-11 05:59:13 -03:00
|
|
|
}
|
|
|
|
|
2020-06-03 09:39:59 -03:00
|
|
|
|
2020-11-17 17:55:30 -04:00
|
|
|
/* Restore signals that the interpreter has called SIG_IGN on to SIG_DFL.
|
|
|
|
*
|
|
|
|
* All of the code in this function must only use async-signal-safe functions,
|
|
|
|
* listed at `man 7 signal` or
|
|
|
|
* http://www.opengroup.org/onlinepubs/009695399/functions/xsh_chap02_04.html.
|
|
|
|
*
|
|
|
|
* If this function is updated, update also _posix_spawn() of subprocess.py.
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
_Py_RestoreSignals(void)
|
|
|
|
{
|
|
|
|
#ifdef SIGPIPE
|
|
|
|
PyOS_setsig(SIGPIPE, SIG_DFL);
|
|
|
|
#endif
|
|
|
|
#ifdef SIGXFZ
|
|
|
|
PyOS_setsig(SIGXFZ, SIG_DFL);
|
|
|
|
#endif
|
|
|
|
#ifdef SIGXFSZ
|
|
|
|
PyOS_setsig(SIGXFSZ, SIG_DFL);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-11-17 13:15:20 -04:00
|
|
|
int
|
|
|
|
_PySignal_Init(int install_signal_handlers)
|
|
|
|
{
|
2021-04-27 22:02:55 -03:00
|
|
|
signal_state_t *state = &signal_global_state;
|
2020-11-17 13:15:20 -04:00
|
|
|
|
2021-04-27 22:02:55 -03:00
|
|
|
state->default_handler = PyLong_FromVoidPtr((void *)SIG_DFL);
|
|
|
|
if (state->default_handler == NULL) {
|
2020-11-17 13:15:20 -04:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2021-04-27 22:02:55 -03:00
|
|
|
state->ignore_handler = PyLong_FromVoidPtr((void *)SIG_IGN);
|
|
|
|
if (state->ignore_handler == NULL) {
|
2020-11-17 13:15:20 -04:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef MS_WINDOWS
|
|
|
|
/* Create manual-reset event, initially unset */
|
2022-12-12 19:50:19 -04:00
|
|
|
state->sigint_event = (void *)CreateEvent(NULL, TRUE, FALSE, FALSE);
|
2021-04-27 22:02:55 -03:00
|
|
|
if (state->sigint_event == NULL) {
|
2020-11-17 13:15:20 -04:00
|
|
|
PyErr_SetFromWindowsErr(0);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2022-04-25 19:13:31 -03:00
|
|
|
for (int signum = 1; signum < Py_NSIG; signum++) {
|
2023-10-09 20:26:29 -03:00
|
|
|
_Py_atomic_store_int_relaxed(&Handlers[signum].tripped, 0);
|
2020-11-17 13:15:20 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
if (install_signal_handlers) {
|
|
|
|
if (signal_install_handlers() < 0) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-06-03 09:39:59 -03:00
|
|
|
// The caller doesn't have to hold the GIL
|
1994-05-11 05:59:13 -03:00
|
|
|
int
|
2020-06-03 09:39:59 -03:00
|
|
|
_PyOS_InterruptOccurred(PyThreadState *tstate)
|
1994-05-11 05:59:13 -03:00
|
|
|
{
|
2020-06-01 15:34:15 -03:00
|
|
|
_Py_EnsureTstateNotNULL(tstate);
|
|
|
|
if (!_Py_ThreadCanHandleSignals(tstate->interp)) {
|
2020-03-26 18:28:11 -03:00
|
|
|
return 0;
|
2010-05-09 12:52:27 -03:00
|
|
|
}
|
2020-03-26 18:28:11 -03:00
|
|
|
|
2023-10-09 20:26:29 -03:00
|
|
|
if (!_Py_atomic_load_int_relaxed(&Handlers[SIGINT].tripped)) {
|
2020-03-26 18:28:11 -03:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2023-10-09 20:26:29 -03:00
|
|
|
_Py_atomic_store_int_relaxed(&Handlers[SIGINT].tripped, 0);
|
2020-03-26 18:28:11 -03:00
|
|
|
return 1;
|
1994-05-11 05:59:13 -03:00
|
|
|
}
|
1997-11-14 18:24:28 -04:00
|
|
|
|
2020-06-02 10:51:37 -03:00
|
|
|
|
2020-06-03 09:39:59 -03:00
|
|
|
// The caller must to hold the GIL
|
|
|
|
int
|
|
|
|
PyOS_InterruptOccurred(void)
|
|
|
|
{
|
|
|
|
PyThreadState *tstate = _PyThreadState_GET();
|
|
|
|
return _PyOS_InterruptOccurred(tstate);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-06-02 10:51:37 -03:00
|
|
|
#ifdef HAVE_FORK
|
2012-11-11 00:33:07 -04:00
|
|
|
static void
|
|
|
|
_clear_pending_signals(void)
|
|
|
|
{
|
2023-10-09 20:26:29 -03:00
|
|
|
if (!_Py_atomic_load_int(&is_tripped)) {
|
2012-11-11 00:33:07 -04:00
|
|
|
return;
|
2020-06-02 10:51:37 -03:00
|
|
|
}
|
|
|
|
|
2023-10-09 20:26:29 -03:00
|
|
|
_Py_atomic_store_int(&is_tripped, 0);
|
2022-04-25 19:13:31 -03:00
|
|
|
for (int i = 1; i < Py_NSIG; ++i) {
|
2023-10-09 20:26:29 -03:00
|
|
|
_Py_atomic_store_int_relaxed(&Handlers[i].tripped, 0);
|
2012-11-11 00:33:07 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1997-11-14 18:24:28 -04:00
|
|
|
void
|
2017-05-27 12:50:54 -03:00
|
|
|
_PySignal_AfterFork(void)
|
1997-11-14 18:24:28 -04:00
|
|
|
{
|
2012-11-11 00:33:07 -04:00
|
|
|
/* Clear the signal flags after forking so that they aren't handled
|
|
|
|
* in both processes if they came in just before the fork() but before
|
|
|
|
* the interpreter had an opportunity to call the handlers. issue9535. */
|
|
|
|
_clear_pending_signals();
|
1997-11-14 18:24:28 -04:00
|
|
|
}
|
2020-06-02 10:51:37 -03:00
|
|
|
#endif /* HAVE_FORK */
|
|
|
|
|
2011-11-21 16:26:56 -04:00
|
|
|
|
|
|
|
int
|
|
|
|
_PyOS_IsMainThread(void)
|
|
|
|
{
|
2020-04-14 10:14:01 -03:00
|
|
|
PyInterpreterState *interp = _PyInterpreterState_GET();
|
2020-04-08 18:35:05 -03:00
|
|
|
return _Py_ThreadCanHandleSignals(interp);
|
2011-11-21 16:26:56 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef MS_WINDOWS
|
2021-04-27 22:02:55 -03:00
|
|
|
/* Returns a manual-reset event which gets tripped whenever
|
|
|
|
SIGINT is received.
|
|
|
|
|
|
|
|
Python.h does not include windows.h so we do cannot use HANDLE
|
|
|
|
as the return type of this function. We use void* instead. */
|
2011-11-21 16:26:56 -04:00
|
|
|
void *_PyOS_SigintEvent(void)
|
|
|
|
{
|
2021-04-27 22:02:55 -03:00
|
|
|
signal_state_t *state = &signal_global_state;
|
|
|
|
return state->sigint_event;
|
2011-11-21 16:26:56 -04:00
|
|
|
}
|
|
|
|
#endif
|