signalmodule.c 41.2 KB
Newer Older
1

2
/* Signal module -- many thanks to Lance Ellinghaus */
3

4 5
/* XXX Signals should be recorded per thread, now we have thread state. */

6
#include "Python.h"
7 8 9
#ifndef MS_WINDOWS
#include "posixmodule.h"
#endif
10 11 12
#ifdef MS_WINDOWS
#include "socketmodule.h"   /* needed for SOCKET_T */
#endif
13

14
#ifdef MS_WINDOWS
15
#include <windows.h>
Benjamin Peterson's avatar
Benjamin Peterson committed
16
#ifdef HAVE_PROCESS_H
17 18
#include <process.h>
#endif
Benjamin Peterson's avatar
Benjamin Peterson committed
19
#endif
20

Benjamin Peterson's avatar
Benjamin Peterson committed
21
#ifdef HAVE_SIGNAL_H
22
#include <signal.h>
Benjamin Peterson's avatar
Benjamin Peterson committed
23 24
#endif
#ifdef HAVE_SYS_STAT_H
25
#include <sys/stat.h>
Benjamin Peterson's avatar
Benjamin Peterson committed
26
#endif
27
#ifdef HAVE_SYS_TIME_H
28
#include <sys/time.h>
29
#endif
30

31 32 33 34 35 36 37 38
#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

39
#ifndef SIG_ERR
40
#define SIG_ERR ((PyOS_sighandler_t)(-1))
41 42
#endif

43
#ifndef NSIG
44
# if defined(_NSIG)
45
#  define NSIG _NSIG            /* For BSD/SysV */
46
# elif defined(_SIGMAX)
47
#  define NSIG (_SIGMAX + 1)    /* For QNX */
48
# elif defined(SIGMAX)
49
#  define NSIG (SIGMAX + 1)     /* For djgpp */
50
# else
51
#  define NSIG 64               /* Use a reasonable default value */
52
# endif
53 54
#endif

55 56 57 58 59 60 61
#include "clinic/signalmodule.c.h"

/*[clinic input]
module signal
[clinic start generated code]*/
/*[clinic end generated code: output=da39a3ee5e6b4b0d input=b0301a3bde5fe9d3]*/

62

63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81
/*
   NOTES ON THE INTERACTION BETWEEN SIGNALS AND THREADS

   When threads are supported, we want the following semantics:

   - only the main thread can set a signal handler
   - any thread can get a signal handler
   - signals are only delivered to the main thread

   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
   delivered to one random thread (an intermediate possibility would
Guido van Rossum's avatar
Guido van Rossum committed
82
   be to deliver it to the main thread -- POSIX?).  For now, we have
83 84 85 86 87 88
   a working implementation that works in all three cases -- the
   handler ignores signals if getpid() isn't the same as in the main
   thread.  XXX This is a hack.
*/

#ifdef WITH_THREAD
89
#include <sys/types.h> /* For pid_t */
90
#include "pythread.h"
91 92 93 94
static long main_thread;
static pid_t main_pid;
#endif

95 96
static volatile struct {
    sig_atomic_t tripped;
97
    PyObject *func;
Barry Warsaw's avatar
Barry Warsaw committed
98 99
} Handlers[NSIG];

100 101 102 103 104 105 106 107 108 109 110 111
#ifdef MS_WINDOWS
#define INVALID_FD ((SOCKET_T)-1)

static volatile struct {
    SOCKET_T fd;
    int use_send;
    int send_err_set;
    int send_errno;
    int send_win_error;
} wakeup = {INVALID_FD, 0, 0};
#else
#define INVALID_FD (-1)
112
static volatile sig_atomic_t wakeup_fd = -1;
113
#endif
114

115 116
/* Speed up sigcheck() when none tripped */
static volatile sig_atomic_t is_tripped = 0;
117

Barry Warsaw's avatar
Barry Warsaw committed
118 119 120
static PyObject *DefaultHandler;
static PyObject *IgnoreHandler;
static PyObject *IntHandler;
121

122 123 124 125 126
/* On Solaris 8, gcc will produce a warning that the function
   declaration is not a prototype. This is caused by the definition of
   SIG_DFL as (void (*)())0; the correct declaration would have been
   (void (*)(int))0. */

127
static PyOS_sighandler_t old_siginthandler = SIG_DFL;
128

129 130 131 132
#ifdef MS_WINDOWS
static HANDLE sigint_event = NULL;
#endif

133 134 135 136 137 138 139 140 141 142 143
#ifdef HAVE_GETITIMER
static PyObject *ItimerError;

/* auxiliary functions for setitimer/getitimer */
static void
timeval_from_double(double d, struct timeval *tv)
{
    tv->tv_sec = floor(d);
    tv->tv_usec = fmod(d, 1.0) * 1000000.0;
}

144
Py_LOCAL_INLINE(double)
145 146 147 148 149 150 151 152 153 154 155 156
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)
157
    return NULL;
158 159

    if(!(v = PyFloat_FromDouble(double_from_timeval(&iv->it_value)))) {
160 161
    Py_DECREF(r);
    return NULL;
162 163 164 165 166
    }

    PyTuple_SET_ITEM(r, 0, v);

    if(!(v = PyFloat_FromDouble(double_from_timeval(&iv->it_interval)))) {
167 168
    Py_DECREF(r);
    return NULL;
169 170 171 172 173 174 175
    }

    PyTuple_SET_ITEM(r, 1, v);

    return r;
}
#endif
176

177
static PyObject *
Peter Schneider-Kamp's avatar
Peter Schneider-Kamp committed
178
signal_default_int_handler(PyObject *self, PyObject *args)
179
{
180 181
    PyErr_SetNone(PyExc_KeyboardInterrupt);
    return NULL;
182 183
}

184
PyDoc_STRVAR(default_int_handler_doc,
Guido van Rossum's avatar
Guido van Rossum committed
185 186
"default_int_handler(...)\n\
\n\
Michael W. Hudson's avatar
Michael W. Hudson committed
187
The default handler for SIGINT installed by Python.\n\
188
It raises KeyboardInterrupt.");
Guido van Rossum's avatar
Guido van Rossum committed
189

190 191 192 193

static int
checksignals_witharg(void * unused)
{
194
    return PyErr_CheckSignals();
195 196
}

197
static int
198
report_wakeup_write_error(void *data)
199 200 201 202 203 204 205 206 207 208 209
{
    int save_errno = errno;
    errno = (int) (Py_intptr_t) data;
    PyErr_SetFromErrno(PyExc_OSError);
    PySys_WriteStderr("Exception ignored when trying to write to the "
                      "signal wakeup fd:\n");
    PyErr_WriteUnraisable(NULL);
    errno = save_errno;
    return 0;
}

210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237
#ifdef MS_WINDOWS
static int
report_wakeup_send_error(void* Py_UNUSED(data))
{
    PyObject *res;

    if (wakeup.send_win_error) {
        /* PyErr_SetExcFromWindowsErr() invokes FormatMessage() which
           recognizes the error codes used by both GetLastError() and
           WSAGetLastError */
        res = PyErr_SetExcFromWindowsErr(PyExc_OSError, wakeup.send_win_error);
    }
    else {
        errno = wakeup.send_errno;
        res = PyErr_SetFromErrno(PyExc_OSError);
    }

    assert(res == NULL);
    wakeup.send_err_set = 0;

    PySys_WriteStderr("Exception ignored when trying to send to the "
                      "signal wakeup fd:\n");
    PyErr_WriteUnraisable(NULL);

    return 0;
}
#endif   /* MS_WINDOWS */

238 239 240
static void
trip_signal(int sig_num)
{
241
    unsigned char byte;
242 243
    int fd;
    Py_ssize_t rc;
244

245
    Handlers[sig_num].tripped = 1;
246 247 248 249 250 251 252 253

#ifdef MS_WINDOWS
    fd = Py_SAFE_DOWNCAST(wakeup.fd, SOCKET_T, int);
#else
    fd = wakeup_fd;
#endif

    if (fd != INVALID_FD) {
254
        byte = (unsigned char)sig_num;
255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272
#ifdef MS_WINDOWS
        if (wakeup.use_send) {
            do {
                rc = send(fd, &byte, 1, 0);
            } while (rc < 0 && errno == EINTR);

            /* we only have a storage for one error in the wakeup structure */
            if (rc < 0 && !wakeup.send_err_set) {
                wakeup.send_err_set = 1;
                wakeup.send_errno = errno;
                wakeup.send_win_error = GetLastError();
                Py_AddPendingCall(report_wakeup_send_error, NULL);
            }
        }
        else
#endif
        {
            byte = (unsigned char)sig_num;
273 274 275 276

            /* _Py_write_noraise() retries write() if write() is interrupted by
               a signal (fails with EINTR). */
            rc = _Py_write_noraise(fd, &byte, 1);
277 278 279 280 281 282 283 284 285 286 287 288 289

            if (rc < 0) {
                Py_AddPendingCall(report_wakeup_write_error,
                                  (void *)(Py_intptr_t)errno);
            }
        }
    }

    if (!is_tripped) {
        /* Set is_tripped after setting .tripped, as it gets
           cleared in PyErr_CheckSignals() before .tripped. */
        is_tripped = 1;
        Py_AddPendingCall(checksignals_witharg, NULL);
290
    }
291 292
}

293
static void
Peter Schneider-Kamp's avatar
Peter Schneider-Kamp committed
294
signal_handler(int sig_num)
295
{
296 297 298
    int save_errno = errno;

#ifdef WITH_THREAD
299
    /* See NOTES section above */
300
    if (getpid() == main_pid)
301
#endif
302
    {
303
        trip_signal(sig_num);
304
    }
305 306

#ifndef HAVE_SIGACTION
307
#ifdef SIGCHLD
308 309 310 311 312
    /* 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)
313
#endif
314
    /* If the handler was not set up with sigaction, reinstall it.  See
315
     * Python/pylifecycle.c for the implementation of PyOS_setsig which
316 317
     * makes this true.  See also issue8354. */
    PyOS_setsig(sig_num, signal_handler);
318
#endif
319 320 321 322

    /* Issue #10311: asynchronously executing signal handlers should not
       mutate errno under the feet of unsuspecting C code. */
    errno = save_errno;
323 324 325 326 327

#ifdef MS_WINDOWS
    if (sig_num == SIGINT)
        SetEvent(sigint_event);
#endif
328
}
329

330

331
#ifdef HAVE_ALARM
332 333 334 335 336 337 338 339 340 341 342 343 344

/*[clinic input]
signal.alarm -> long

    seconds: int
    /

Arrange for SIGALRM to arrive after the given number of seconds.
[clinic start generated code]*/

static long
signal_alarm_impl(PyModuleDef *module, int seconds)
/*[clinic end generated code: output=f5f9badaab25d3e7 input=0d5e97e0e6f39e86]*/
345
{
346
    /* alarm() returns the number of seconds remaining */
347
    return (long)alarm(seconds);
348
}
Guido van Rossum's avatar
Guido van Rossum committed
349

350
#endif
351

352
#ifdef HAVE_PAUSE
353 354 355 356 357 358 359

/*[clinic input]
signal.pause

Wait until a signal arrives.
[clinic start generated code]*/

360
static PyObject *
361 362
signal_pause_impl(PyModuleDef *module)
/*[clinic end generated code: output=9245704caa63bbe9 input=f03de0f875752062]*/
363
{
364 365 366 367 368 369 370 371 372
    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;

373
    Py_RETURN_NONE;
374
}
Guido van Rossum's avatar
Guido van Rossum committed
375

376
#endif
377

378

379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395
/*[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]*/

396
static PyObject *
397 398
signal_signal_impl(PyModuleDef *module, int signalnum, PyObject *handler)
/*[clinic end generated code: output=622d7d0beebea546 input=deee84af5fa0432c]*/
399
{
400 401
    PyObject *old_handler;
    void (*func)(int);
402
#ifdef MS_WINDOWS
403 404
    /* Validate that signalnum is one of the allowable signals */
    switch (signalnum) {
405
        case SIGABRT: break;
406 407 408 409 410
#ifdef SIGBREAK
        /* Issue #10003: SIGBREAK is not documented as permitted, but works
           and corresponds to CTRL_BREAK_EVENT. */
        case SIGBREAK: break;
#endif
411 412 413 414 415 416 417 418
        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;
419 420
    }
#endif
421
#ifdef WITH_THREAD
422 423 424 425 426 427
    if (PyThread_get_thread_ident() != main_thread) {
        PyErr_SetString(PyExc_ValueError,
                        "signal only works in main thread");
        return NULL;
    }
#endif
428
    if (signalnum < 1 || signalnum >= NSIG) {
429 430 431 432
        PyErr_SetString(PyExc_ValueError,
                        "signal number out of range");
        return NULL;
    }
433
    if (handler == IgnoreHandler)
434
        func = SIG_IGN;
435
    else if (handler == DefaultHandler)
436
        func = SIG_DFL;
437
    else if (!PyCallable_Check(handler)) {
438
        PyErr_SetString(PyExc_TypeError,
439
"signal handler must be signal.SIG_IGN, signal.SIG_DFL, or a callable object");
440 441 442 443
                return NULL;
    }
    else
        func = signal_handler;
444
    if (PyOS_setsig(signalnum, func) == SIG_ERR) {
445
        PyErr_SetFromErrno(PyExc_OSError);
446 447
        return NULL;
    }
448 449 450 451
    old_handler = Handlers[signalnum].func;
    Handlers[signalnum].tripped = 0;
    Py_INCREF(handler);
    Handlers[signalnum].func = handler;
452 453 454 455
    if (old_handler != NULL)
        return old_handler;
    else
        Py_RETURN_NONE;
456 457
}

Guido van Rossum's avatar
Guido van Rossum committed
458

459 460 461 462 463 464 465 466 467 468 469 470 471 472
/*[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]*/
473

474
static PyObject *
475 476
signal_getsignal_impl(PyModuleDef *module, int signalnum)
/*[clinic end generated code: output=d50ec355757e360c input=ac23a00f19dfa509]*/
477
{
478
    PyObject *old_handler;
479
    if (signalnum < 1 || signalnum >= NSIG) {
480 481 482 483
        PyErr_SetString(PyExc_ValueError,
                        "signal number out of range");
        return NULL;
    }
484
    old_handler = Handlers[signalnum].func;
485 486 487 488 489 490 491
    if (old_handler != NULL) {
        Py_INCREF(old_handler);
        return old_handler;
    }
    else {
        Py_RETURN_NONE;
    }
492 493
}

Christian Heimes's avatar
Christian Heimes committed
494
#ifdef HAVE_SIGINTERRUPT
495 496 497 498 499 500 501 502 503 504 505 506 507

/*[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]*/
Christian Heimes's avatar
Christian Heimes committed
508 509

static PyObject *
510 511
signal_siginterrupt_impl(PyModuleDef *module, int signalnum, int flag)
/*[clinic end generated code: output=5dcf8b031b0e8044 input=4160acacca3e2099]*/
Christian Heimes's avatar
Christian Heimes committed
512
{
513
    if (signalnum < 1 || signalnum >= NSIG) {
514 515 516 517
        PyErr_SetString(PyExc_ValueError,
                        "signal number out of range");
        return NULL;
    }
518
    if (siginterrupt(signalnum, flag)<0) {
519
        PyErr_SetFromErrno(PyExc_OSError);
520 521
        return NULL;
    }
522
    Py_RETURN_NONE;
Christian Heimes's avatar
Christian Heimes committed
523 524 525
}

#endif
526

527 528

static PyObject*
529 530
signal_set_wakeup_fd(PyObject *self, PyObject *args)
{
531
    struct _Py_stat_struct status;
532 533
#ifdef MS_WINDOWS
    PyObject *fdobj;
534
    SOCKET_T sockfd, old_sockfd;
535 536 537 538 539 540 541 542
    int res;
    int res_size = sizeof res;
    PyObject *mod;
    int is_socket;

    if (!PyArg_ParseTuple(args, "O:set_wakeup_fd", &fdobj))
        return NULL;

543 544
    sockfd = PyLong_AsSocket_t(fdobj);
    if (sockfd == (SOCKET_T)(-1) && PyErr_Occurred())
545 546
        return NULL;
#else
547
    int fd, old_fd;
548

549 550
    if (!PyArg_ParseTuple(args, "i:set_wakeup_fd", &fd))
        return NULL;
551 552
#endif

553
#ifdef WITH_THREAD
554 555 556 557 558 559
    if (PyThread_get_thread_ident() != main_thread) {
        PyErr_SetString(PyExc_ValueError,
                        "set_wakeup_fd only works in main thread");
        return NULL;
    }
#endif
560

561 562
#ifdef MS_WINDOWS
    is_socket = 0;
563
    if (sockfd != INVALID_FD) {
564 565 566 567 568 569 570
        /* Import the _socket module to call WSAStartup() */
        mod = PyImport_ImportModuleNoBlock("_socket");
        if (mod == NULL)
            return NULL;
        Py_DECREF(mod);

        /* test the socket */
571
        if (getsockopt(sockfd, SOL_SOCKET, SO_ERROR,
572
                       (char *)&res, &res_size) != 0) {
573 574 575
            int fd, err;

            err = WSAGetLastError();
576 577 578 579 580
            if (err != WSAENOTSOCK) {
                PyErr_SetExcFromWindowsErr(PyExc_OSError, err);
                return NULL;
            }

581 582
            fd = (int)sockfd;
            if ((SOCKET_T)fd != sockfd || !_PyVerify_fd(fd)) {
583 584 585 586
                PyErr_SetString(PyExc_ValueError, "invalid fd");
                return NULL;
            }

587
            if (_Py_fstat(fd, &status) != 0)
588
                return NULL;
589 590

            /* on Windows, a file cannot be set to non-blocking mode */
591
        }
592
        else {
593
            is_socket = 1;
594 595 596 597

            /* Windows does not provide a function to test if a socket
               is in non-blocking mode */
        }
598 599
    }

600 601
    old_sockfd = wakeup.fd;
    wakeup.fd = sockfd;
602 603
    wakeup.use_send = is_socket;

604 605
    if (old_sockfd != INVALID_FD)
        return PyLong_FromSocket_t(old_sockfd);
606 607 608
    else
        return PyLong_FromLong(-1);
#else
Victor Stinner's avatar
Victor Stinner committed
609
    if (fd != -1) {
610 611
        int blocking;

612 613
        if (!_PyVerify_fd(fd)) {
            PyErr_SetString(PyExc_ValueError, "invalid fd");
Victor Stinner's avatar
Victor Stinner committed
614 615
            return NULL;
        }
616

617
        if (_Py_fstat(fd, &status) != 0)
618
            return NULL;
619 620 621 622 623 624 625 626 627 628

        blocking = _Py_get_blocking(fd);
        if (blocking < 0)
            return NULL;
        if (blocking) {
            PyErr_Format(PyExc_ValueError,
                         "the fd %i must be in non-blocking mode",
                         fd);
            return NULL;
        }
629
    }
630

631 632
    old_fd = wakeup_fd;
    wakeup_fd = fd;
633

634
    return PyLong_FromLong(old_fd);
635
#endif
636 637 638 639 640
}

PyDoc_STRVAR(set_wakeup_fd_doc,
"set_wakeup_fd(fd) -> fd\n\
\n\
641
Sets the fd to be written to (with the signal number) when a signal\n\
642
comes in.  A library can use this to wakeup select or poll.\n\
643
The previous fd or -1 is returned.\n\
644 645 646 647 648 649 650
\n\
The fd must be non-blocking.");

/* C API for the same, without all the error checking */
int
PySignal_SetWakeupFd(int fd)
{
651
    int old_fd;
652 653
    if (fd < 0)
        fd = -1;
654 655 656 657 658 659

#ifdef MS_WINDOWS
    old_fd = Py_SAFE_DOWNCAST(wakeup.fd, SOCKET_T, int);
    wakeup.fd = fd;
#else
    old_fd = wakeup_fd;
660
    wakeup_fd = fd;
661
#endif
662
    return old_fd;
663 664 665
}


666
#ifdef HAVE_SETITIMER
667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683

/*[clinic input]
signal.setitimer

    which:    int
    seconds:  double
    interval: double = 0.0
    /

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]*/

684
static PyObject *
685 686 687
signal_setitimer_impl(PyModuleDef *module, int which, double seconds,
                      double interval)
/*[clinic end generated code: output=9a9227a27bd05988 input=0d27d417cfcbd51a]*/
688 689 690
{
    struct itimerval new, old;

691
    timeval_from_double(seconds, &new.it_value);
692 693 694
    timeval_from_double(interval, &new.it_interval);
    /* Let OS check "which" value */
    if (setitimer(which, &new, &old) != 0) {
695 696
        PyErr_SetFromErrno(ItimerError);
        return NULL;
697 698 699 700 701 702 703 704 705
    }

    return itimer_retval(&old);
}

#endif


#ifdef HAVE_GETITIMER
706 707 708 709 710 711 712 713 714 715

/*[clinic input]
signal.getitimer

    which:    int
    /

Returns current value of given itimer.
[clinic start generated code]*/

716
static PyObject *
717 718
signal_getitimer_impl(PyModuleDef *module, int which)
/*[clinic end generated code: output=d1349ab18aadc569 input=f7d21d38f3490627]*/
719 720 721 722
{
    struct itimerval old;

    if (getitimer(which, &old) != 0) {
723 724
        PyErr_SetFromErrno(ItimerError);
        return NULL;
725 726 727 728 729 730 731
    }

    return itimer_retval(&old);
}

#endif

732 733
#if defined(PYPTHREAD_SIGMASK) || defined(HAVE_SIGWAIT) || \
        defined(HAVE_SIGWAITINFO) || defined(HAVE_SIGTIMEDWAIT)
734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780
/* Convert an iterable to a sigset.
   Return 0 on success, return -1 and raise an exception on error. */

static int
iterable_to_sigset(PyObject *iterable, sigset_t *mask)
{
    int result = -1;
    PyObject *iterator, *item;
    long signum;
    int err;

    sigemptyset(mask);

    iterator = PyObject_GetIter(iterable);
    if (iterator == NULL)
        goto error;

    while (1)
    {
        item = PyIter_Next(iterator);
        if (item == NULL) {
            if (PyErr_Occurred())
                goto error;
            else
                break;
        }

        signum = PyLong_AsLong(item);
        Py_DECREF(item);
        if (signum == -1 && PyErr_Occurred())
            goto error;
        if (0 < signum && signum < NSIG)
            err = sigaddset(mask, (int)signum);
        else
            err = 1;
        if (err) {
            PyErr_Format(PyExc_ValueError,
                         "signal number %ld out of range", signum);
            goto error;
        }
    }
    result = 0;

error:
    Py_XDECREF(iterator);
    return result;
}
781
#endif
782

783
#if defined(PYPTHREAD_SIGMASK) || defined(HAVE_SIGPENDING)
784 785
static PyObject*
sigset_to_set(sigset_t mask)
786
{
787 788
    PyObject *signum, *result;
    int sig;
789

790
    result = PySet_New(0);
791 792 793 794
    if (result == NULL)
        return NULL;

    for (sig = 1; sig < NSIG; sig++) {
795
        if (sigismember(&mask, sig) != 1)
796 797 798 799 800 801 802 803 804 805 806 807
            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;
        }
808
        if (PySet_Add(result, signum) == -1) {
809 810 811 812 813 814 815 816
            Py_DECREF(signum);
            Py_DECREF(result);
            return NULL;
        }
        Py_DECREF(signum);
    }
    return result;
}
817
#endif
818

819
#ifdef PYPTHREAD_SIGMASK
820 821 822 823 824 825 826 827 828 829 830

/*[clinic input]
signal.pthread_sigmask

    how:  int
    mask: object
    /

Fetch and/or change the signal mask of the calling thread.
[clinic start generated code]*/

831
static PyObject *
832 833
signal_pthread_sigmask_impl(PyModuleDef *module, int how, PyObject *mask)
/*[clinic end generated code: output=b043a9f0eeb1e075 input=f3b7d7a61b7b8283]*/
834
{
835
    sigset_t newmask, previous;
836 837
    int err;

838
    if (iterable_to_sigset(mask, &newmask))
839 840
        return NULL;

841
    err = pthread_sigmask(how, &newmask, &previous);
842 843
    if (err != 0) {
        errno = err;
844
        PyErr_SetFromErrno(PyExc_OSError);
845 846 847 848 849 850 851 852 853 854
        return NULL;
    }

    /* if signals was unblocked, signal handlers have been called */
    if (PyErr_CheckSignals())
        return NULL;

    return sigset_to_set(previous);
}

855 856
#endif   /* #ifdef PYPTHREAD_SIGMASK */

857

858
#ifdef HAVE_SIGPENDING
859 860 861 862 863 864 865 866 867 868

/*[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]*/

869
static PyObject *
870 871
signal_sigpending_impl(PyModuleDef *module)
/*[clinic end generated code: output=bf4ced803e7e51dd input=e0036c016f874e29]*/
872 873 874 875 876 877 878 879 880 881 882 883 884
{
    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
885 886 887 888 889 890 891 892 893 894 895 896 897 898

/*[clinic input]
signal.sigwait

    sigset: object
    /

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]*/

899
static PyObject *
900 901
signal_sigwait(PyModuleDef *module, PyObject *sigset)
/*[clinic end generated code: output=dae53048b0336a5c input=11af2d82d83c2e94]*/
902 903 904 905
{
    sigset_t set;
    int err, signum;

906
    if (iterable_to_sigset(sigset, &set))
907 908
        return NULL;

909
    Py_BEGIN_ALLOW_THREADS
910
    err = sigwait(&set, &signum);
911
    Py_END_ALLOW_THREADS
912 913 914 915 916 917 918 919
    if (err) {
        errno = err;
        return PyErr_SetFromErrno(PyExc_OSError);
    }

    return PyLong_FromLong(signum);
}

920 921
#endif   /* #ifdef HAVE_SIGWAIT */

922

923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961
#if defined(HAVE_SIGWAITINFO) || defined(HAVE_SIGTIMEDWAIT)
static int initialized;
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 PyTypeObject SiginfoType;

static PyObject *
fill_siginfo(siginfo_t *si)
{
    PyObject *result = PyStructSequence_New(&SiginfoType);
    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)));
    PyStructSequence_SET_ITEM(result, 2, PyLong_FromLong((long)(si->si_errno)));
    PyStructSequence_SET_ITEM(result, 3, PyLong_FromPid(si->si_pid));
962
    PyStructSequence_SET_ITEM(result, 4, _PyLong_FromUid(si->si_uid));
963 964 965 966 967 968 969 970 971 972 973 974 975
    PyStructSequence_SET_ITEM(result, 5,
                                PyLong_FromLong((long)(si->si_status)));
    PyStructSequence_SET_ITEM(result, 6, PyLong_FromLong(si->si_band));
    if (PyErr_Occurred()) {
        Py_DECREF(result);
        return NULL;
    }

    return result;
}
#endif

#ifdef HAVE_SIGWAITINFO
976 977 978 979 980 981 982 983 984 985 986 987

/*[clinic input]
signal.sigwaitinfo

    sigset: object
    /

Wait synchronously until one of the signals in *sigset* is delivered.

Returns a struct_siginfo containing information about the signal.
[clinic start generated code]*/

988
static PyObject *
989 990
signal_sigwaitinfo(PyModuleDef *module, PyObject *sigset)
/*[clinic end generated code: output=0bb53b07e5e926b5 input=f3779a74a991e171]*/
991 992 993 994
{
    sigset_t set;
    siginfo_t si;
    int err;
995
    int async_err = 0;
996

997
    if (iterable_to_sigset(sigset, &set))
998 999
        return NULL;

1000 1001 1002 1003 1004 1005
    do {
        Py_BEGIN_ALLOW_THREADS
        err = sigwaitinfo(&set, &si);
        Py_END_ALLOW_THREADS
    } while (err == -1
             && errno == EINTR && !(async_err = PyErr_CheckSignals()));
1006
    if (err == -1)
1007
        return (!async_err) ? PyErr_SetFromErrno(PyExc_OSError) : NULL;
1008 1009 1010 1011 1012 1013 1014

    return fill_siginfo(&si);
}

#endif   /* #ifdef HAVE_SIGWAITINFO */

#ifdef HAVE_SIGTIMEDWAIT
1015 1016 1017 1018 1019

/*[clinic input]
signal.sigtimedwait

    sigset:  object
1020
    timeout as timeout_obj: object
1021 1022 1023 1024 1025 1026 1027
    /

Like sigwaitinfo(), but with a timeout.

The timeout is specified in seconds, with floating point numbers allowed.
[clinic start generated code]*/

1028
static PyObject *
1029
signal_sigtimedwait_impl(PyModuleDef *module, PyObject *sigset,
1030 1031
                         PyObject *timeout_obj)
/*[clinic end generated code: output=c1960b5cea139929 input=53fd4ea3e3724eb8]*/
1032
{
1033
    struct timespec ts;
1034 1035
    sigset_t set;
    siginfo_t si;
1036
    int res;
1037 1038
    _PyTime_t timeout, deadline, monotonic;

1039 1040
    if (_PyTime_FromSecondsObject(&timeout,
                                  timeout_obj, _PyTime_ROUND_CEILING) < 0)
1041 1042
        return NULL;

1043
    if (timeout < 0) {
1044 1045 1046 1047
        PyErr_SetString(PyExc_ValueError, "timeout must be non-negative");
        return NULL;
    }

1048
    if (iterable_to_sigset(sigset, &set))
1049 1050
        return NULL;

1051
    deadline = _PyTime_GetMonotonicClock() + timeout;
1052 1053

    do {
1054 1055
        if (_PyTime_AsTimespec(timeout, &ts) < 0)
            return NULL;
1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074

        Py_BEGIN_ALLOW_THREADS
        res = sigtimedwait(&set, &si, &ts);
        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;

1075 1076
        monotonic = _PyTime_GetMonotonicClock();
        timeout = deadline - monotonic;
1077
        if (timeout < 0)
1078 1079
            break;
    } while (1);
1080 1081 1082 1083 1084 1085

    return fill_siginfo(&si);
}

#endif   /* #ifdef HAVE_SIGTIMEDWAIT */

1086 1087

#if defined(HAVE_PTHREAD_KILL) && defined(WITH_THREAD)
1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098

/*[clinic input]
signal.pthread_kill

    thread_id:  long
    signalnum:  int
    /

Send a signal to a thread.
[clinic start generated code]*/

1099
static PyObject *
1100 1101
signal_pthread_kill_impl(PyModuleDef *module, long thread_id, int signalnum)
/*[clinic end generated code: output=35aed2713c756d7a input=77ed6a3b6f2a8122]*/
1102 1103 1104
{
    int err;

1105
    err = pthread_kill((pthread_t)thread_id, signalnum);
1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122
    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;
}

#endif   /* #if defined(HAVE_PTHREAD_KILL) && defined(WITH_THREAD) */



1123 1124
/* List of functions defined in the module -- some of the methoddefs are
   defined to nothing if the corresponding C function is not available. */
Barry Warsaw's avatar
Barry Warsaw committed
1125
static PyMethodDef signal_methods[] = {
1126 1127 1128 1129 1130 1131
    {"default_int_handler", signal_default_int_handler, METH_VARARGS, default_int_handler_doc},
    SIGNAL_ALARM_METHODDEF
    SIGNAL_SETITIMER_METHODDEF
    SIGNAL_GETITIMER_METHODDEF
    SIGNAL_SIGNAL_METHODDEF
    SIGNAL_GETSIGNAL_METHODDEF
1132
    {"set_wakeup_fd",           signal_set_wakeup_fd, METH_VARARGS, set_wakeup_fd_doc},
1133 1134 1135 1136 1137 1138 1139 1140 1141
    SIGNAL_SIGINTERRUPT_METHODDEF
    SIGNAL_PAUSE_METHODDEF
    SIGNAL_PTHREAD_KILL_METHODDEF
    SIGNAL_PTHREAD_SIGMASK_METHODDEF
    SIGNAL_SIGPENDING_METHODDEF
    SIGNAL_SIGWAIT_METHODDEF
    SIGNAL_SIGWAITINFO_METHODDEF
    SIGNAL_SIGTIMEDWAIT_METHODDEF
    {NULL, NULL}           /* sentinel */
1142 1143
};

Barry Warsaw's avatar
Barry Warsaw committed
1144

1145
PyDoc_STRVAR(module_doc,
Guido van Rossum's avatar
Guido van Rossum committed
1146 1147 1148 1149 1150
"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\
1151 1152 1153
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\
Guido van Rossum's avatar
Guido van Rossum committed
1154 1155 1156 1157 1158
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\
1159
signal constants:\n\
Guido van Rossum's avatar
Guido van Rossum committed
1160 1161 1162 1163 1164
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\
1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176
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\
Guido van Rossum's avatar
Guido van Rossum committed
1177 1178
*** IMPORTANT NOTICE ***\n\
A signal handler function is called with two arguments:\n\
1179
the first is the signal number, the second is the interrupted stack frame.");
Guido van Rossum's avatar
Guido van Rossum committed
1180

1181
static struct PyModuleDef signalmodule = {
1182
    PyModuleDef_HEAD_INIT,
1183
    "_signal",
1184 1185 1186 1187 1188 1189 1190
    module_doc,
    -1,
    signal_methods,
    NULL,
    NULL,
    NULL,
    NULL
1191 1192
};

1193
PyMODINIT_FUNC
1194
PyInit__signal(void)
1195
{
1196 1197
    PyObject *m, *d, *x;
    int i;
1198 1199

#ifdef WITH_THREAD
1200 1201 1202 1203 1204 1205 1206 1207 1208
    main_thread = PyThread_get_thread_ident();
    main_pid = getpid();
#endif

    /* Create the module and add the functions */
    m = PyModule_Create(&signalmodule);
    if (m == NULL)
        return NULL;

1209
#if defined(HAVE_SIGWAITINFO) || defined(HAVE_SIGTIMEDWAIT)
1210 1211 1212 1213
    if (!initialized) {
        if (PyStructSequence_InitType2(&SiginfoType, &struct_siginfo_desc) < 0)
            return NULL;
    }
1214 1215 1216 1217 1218
    Py_INCREF((PyObject*) &SiginfoType);
    PyModule_AddObject(m, "struct_siginfo", (PyObject*) &SiginfoType);
    initialized = 1;
#endif

1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234
    /* Add some symbolic constants to the module */
    d = PyModule_GetDict(m);

    x = DefaultHandler = PyLong_FromVoidPtr((void *)SIG_DFL);
    if (!x || PyDict_SetItemString(d, "SIG_DFL", x) < 0)
        goto finally;

    x = IgnoreHandler = PyLong_FromVoidPtr((void *)SIG_IGN);
    if (!x || PyDict_SetItemString(d, "SIG_IGN", x) < 0)
        goto finally;

    x = PyLong_FromLong((long)NSIG);
    if (!x || PyDict_SetItemString(d, "NSIG", x) < 0)
        goto finally;
    Py_DECREF(x);

1235
#ifdef SIG_BLOCK
1236 1237
    if (PyModule_AddIntMacro(m, SIG_BLOCK))
         goto finally;
1238 1239
#endif
#ifdef SIG_UNBLOCK
1240 1241
    if (PyModule_AddIntMacro(m, SIG_UNBLOCK))
         goto finally;
1242 1243
#endif
#ifdef SIG_SETMASK
1244 1245
    if (PyModule_AddIntMacro(m, SIG_SETMASK))
         goto finally;
1246 1247
#endif

1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272
    x = IntHandler = PyDict_GetItemString(d, "default_int_handler");
    if (!x)
        goto finally;
    Py_INCREF(IntHandler);

    Handlers[0].tripped = 0;
    for (i = 1; i < NSIG; i++) {
        void (*t)(int);
        t = PyOS_getsig(i);
        Handlers[i].tripped = 0;
        if (t == SIG_DFL)
            Handlers[i].func = DefaultHandler;
        else if (t == SIG_IGN)
            Handlers[i].func = IgnoreHandler;
        else
            Handlers[i].func = Py_None; /* None of our business */
        Py_INCREF(Handlers[i].func);
    }
    if (Handlers[SIGINT].func == DefaultHandler) {
        /* Install default int handler */
        Py_INCREF(IntHandler);
        Py_DECREF(Handlers[SIGINT].func);
        Handlers[SIGINT].func = IntHandler;
        old_siginthandler = PyOS_setsig(SIGINT, signal_handler);
    }
1273 1274

#ifdef SIGHUP
1275 1276 1277
    x = PyLong_FromLong(SIGHUP);
    PyDict_SetItemString(d, "SIGHUP", x);
    Py_XDECREF(x);
1278 1279
#endif
#ifdef SIGINT
1280 1281 1282
    x = PyLong_FromLong(SIGINT);
    PyDict_SetItemString(d, "SIGINT", x);
    Py_XDECREF(x);
1283
#endif
1284
#ifdef SIGBREAK
1285 1286 1287
    x = PyLong_FromLong(SIGBREAK);
    PyDict_SetItemString(d, "SIGBREAK", x);
    Py_XDECREF(x);
1288
#endif
1289
#ifdef SIGQUIT
1290 1291 1292
    x = PyLong_FromLong(SIGQUIT);
    PyDict_SetItemString(d, "SIGQUIT", x);
    Py_XDECREF(x);
1293 1294
#endif
#ifdef SIGILL
1295 1296 1297
    x = PyLong_FromLong(SIGILL);
    PyDict_SetItemString(d, "SIGILL", x);
    Py_XDECREF(x);
1298 1299
#endif
#ifdef SIGTRAP
1300 1301 1302
    x = PyLong_FromLong(SIGTRAP);
    PyDict_SetItemString(d, "SIGTRAP", x);
    Py_XDECREF(x);
1303 1304
#endif
#ifdef SIGIOT
1305 1306 1307
    x = PyLong_FromLong(SIGIOT);
    PyDict_SetItemString(d, "SIGIOT", x);
    Py_XDECREF(x);
1308 1309
#endif
#ifdef SIGABRT
1310 1311 1312
    x = PyLong_FromLong(SIGABRT);
    PyDict_SetItemString(d, "SIGABRT", x);
    Py_XDECREF(x);
1313 1314
#endif
#ifdef SIGEMT
1315 1316 1317
    x = PyLong_FromLong(SIGEMT);
    PyDict_SetItemString(d, "SIGEMT", x);
    Py_XDECREF(x);
1318 1319
#endif
#ifdef SIGFPE
1320 1321 1322
    x = PyLong_FromLong(SIGFPE);
    PyDict_SetItemString(d, "SIGFPE", x);
    Py_XDECREF(x);
1323 1324
#endif
#ifdef SIGKILL
1325 1326 1327
    x = PyLong_FromLong(SIGKILL);
    PyDict_SetItemString(d, "SIGKILL", x);
    Py_XDECREF(x);
1328 1329
#endif
#ifdef SIGBUS
1330 1331 1332
    x = PyLong_FromLong(SIGBUS);
    PyDict_SetItemString(d, "SIGBUS", x);
    Py_XDECREF(x);
1333 1334
#endif
#ifdef SIGSEGV
1335 1336 1337
    x = PyLong_FromLong(SIGSEGV);
    PyDict_SetItemString(d, "SIGSEGV", x);
    Py_XDECREF(x);
1338 1339
#endif
#ifdef SIGSYS
1340 1341 1342
    x = PyLong_FromLong(SIGSYS);
    PyDict_SetItemString(d, "SIGSYS", x);
    Py_XDECREF(x);
1343 1344
#endif
#ifdef SIGPIPE
1345 1346 1347
    x = PyLong_FromLong(SIGPIPE);
    PyDict_SetItemString(d, "SIGPIPE", x);
    Py_XDECREF(x);
1348 1349
#endif
#ifdef SIGALRM
1350 1351 1352
    x = PyLong_FromLong(SIGALRM);
    PyDict_SetItemString(d, "SIGALRM", x);
    Py_XDECREF(x);
1353 1354
#endif
#ifdef SIGTERM
1355 1356 1357
    x = PyLong_FromLong(SIGTERM);
    PyDict_SetItemString(d, "SIGTERM", x);
    Py_XDECREF(x);
1358 1359
#endif
#ifdef SIGUSR1
1360 1361 1362
    x = PyLong_FromLong(SIGUSR1);
    PyDict_SetItemString(d, "SIGUSR1", x);
    Py_XDECREF(x);
1363 1364
#endif
#ifdef SIGUSR2
1365 1366 1367
    x = PyLong_FromLong(SIGUSR2);
    PyDict_SetItemString(d, "SIGUSR2", x);
    Py_XDECREF(x);
1368 1369
#endif
#ifdef SIGCLD
1370 1371 1372
    x = PyLong_FromLong(SIGCLD);
    PyDict_SetItemString(d, "SIGCLD", x);
    Py_XDECREF(x);
1373 1374
#endif
#ifdef SIGCHLD
1375 1376 1377
    x = PyLong_FromLong(SIGCHLD);
    PyDict_SetItemString(d, "SIGCHLD", x);
    Py_XDECREF(x);
1378 1379
#endif
#ifdef SIGPWR
1380 1381 1382
    x = PyLong_FromLong(SIGPWR);
    PyDict_SetItemString(d, "SIGPWR", x);
    Py_XDECREF(x);
1383 1384
#endif
#ifdef SIGIO
1385 1386 1387
    x = PyLong_FromLong(SIGIO);
    PyDict_SetItemString(d, "SIGIO", x);
    Py_XDECREF(x);
1388 1389
#endif
#ifdef SIGURG
1390 1391 1392
    x = PyLong_FromLong(SIGURG);
    PyDict_SetItemString(d, "SIGURG", x);
    Py_XDECREF(x);
1393 1394
#endif
#ifdef SIGWINCH
1395 1396 1397
    x = PyLong_FromLong(SIGWINCH);
    PyDict_SetItemString(d, "SIGWINCH", x);
    Py_XDECREF(x);
1398 1399
#endif
#ifdef SIGPOLL
1400 1401 1402
    x = PyLong_FromLong(SIGPOLL);
    PyDict_SetItemString(d, "SIGPOLL", x);
    Py_XDECREF(x);
1403 1404
#endif
#ifdef SIGSTOP
1405 1406 1407
    x = PyLong_FromLong(SIGSTOP);
    PyDict_SetItemString(d, "SIGSTOP", x);
    Py_XDECREF(x);
1408 1409
#endif
#ifdef SIGTSTP
1410 1411 1412
    x = PyLong_FromLong(SIGTSTP);
    PyDict_SetItemString(d, "SIGTSTP", x);
    Py_XDECREF(x);
1413 1414
#endif
#ifdef SIGCONT
1415 1416 1417
    x = PyLong_FromLong(SIGCONT);
    PyDict_SetItemString(d, "SIGCONT", x);
    Py_XDECREF(x);
1418 1419
#endif
#ifdef SIGTTIN
1420 1421 1422
    x = PyLong_FromLong(SIGTTIN);
    PyDict_SetItemString(d, "SIGTTIN", x);
    Py_XDECREF(x);
1423 1424
#endif
#ifdef SIGTTOU
1425 1426 1427
    x = PyLong_FromLong(SIGTTOU);
    PyDict_SetItemString(d, "SIGTTOU", x);
    Py_XDECREF(x);
1428 1429
#endif
#ifdef SIGVTALRM
1430 1431 1432
    x = PyLong_FromLong(SIGVTALRM);
    PyDict_SetItemString(d, "SIGVTALRM", x);
    Py_XDECREF(x);
1433 1434
#endif
#ifdef SIGPROF
1435 1436 1437
    x = PyLong_FromLong(SIGPROF);
    PyDict_SetItemString(d, "SIGPROF", x);
    Py_XDECREF(x);
1438
#endif
1439
#ifdef SIGXCPU
1440 1441 1442
    x = PyLong_FromLong(SIGXCPU);
    PyDict_SetItemString(d, "SIGXCPU", x);
    Py_XDECREF(x);
1443 1444
#endif
#ifdef SIGXFSZ
1445 1446 1447
    x = PyLong_FromLong(SIGXFSZ);
    PyDict_SetItemString(d, "SIGXFSZ", x);
    Py_XDECREF(x);
1448
#endif
1449
#ifdef SIGRTMIN
1450 1451 1452
    x = PyLong_FromLong(SIGRTMIN);
    PyDict_SetItemString(d, "SIGRTMIN", x);
    Py_XDECREF(x);
1453 1454
#endif
#ifdef SIGRTMAX
1455 1456 1457
    x = PyLong_FromLong(SIGRTMAX);
    PyDict_SetItemString(d, "SIGRTMAX", x);
    Py_XDECREF(x);
1458
#endif
1459
#ifdef SIGINFO
1460 1461 1462
    x = PyLong_FromLong(SIGINFO);
    PyDict_SetItemString(d, "SIGINFO", x);
    Py_XDECREF(x);
1463
#endif
1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481

#ifdef ITIMER_REAL
    x = PyLong_FromLong(ITIMER_REAL);
    PyDict_SetItemString(d, "ITIMER_REAL", x);
    Py_DECREF(x);
#endif
#ifdef ITIMER_VIRTUAL
    x = PyLong_FromLong(ITIMER_VIRTUAL);
    PyDict_SetItemString(d, "ITIMER_VIRTUAL", x);
    Py_DECREF(x);
#endif
#ifdef ITIMER_PROF
    x = PyLong_FromLong(ITIMER_PROF);
    PyDict_SetItemString(d, "ITIMER_PROF", x);
    Py_DECREF(x);
#endif

#if defined (HAVE_SETITIMER) || defined (HAVE_GETITIMER)
1482 1483
    ItimerError = PyErr_NewException("signal.ItimerError",
     PyExc_IOError, NULL);
1484
    if (ItimerError != NULL)
1485
    PyDict_SetItemString(d, "ItimerError", ItimerError);
1486 1487
#endif

1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499
#ifdef CTRL_C_EVENT
    x = PyLong_FromLong(CTRL_C_EVENT);
    PyDict_SetItemString(d, "CTRL_C_EVENT", x);
    Py_DECREF(x);
#endif

#ifdef CTRL_BREAK_EVENT
    x = PyLong_FromLong(CTRL_BREAK_EVENT);
    PyDict_SetItemString(d, "CTRL_BREAK_EVENT", x);
    Py_DECREF(x);
#endif

1500 1501 1502 1503 1504
#ifdef MS_WINDOWS
    /* Create manual-reset event, initially unset */
    sigint_event = CreateEvent(NULL, TRUE, FALSE, FALSE);
#endif

1505
    if (PyErr_Occurred()) {
1506 1507
        Py_DECREF(m);
        m = NULL;
1508
    }
Barry Warsaw's avatar
Barry Warsaw committed
1509 1510

  finally:
1511
    return m;
1512 1513 1514
}

static void
1515
finisignal(void)
1516
{
1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532
    int i;
    PyObject *func;

    PyOS_setsig(SIGINT, old_siginthandler);
    old_siginthandler = SIG_DFL;

    for (i = 1; i < NSIG; i++) {
        func = Handlers[i].func;
        Handlers[i].tripped = 0;
        Handlers[i].func = NULL;
        if (i != SIGINT && func != NULL && func != Py_None &&
            func != DefaultHandler && func != IgnoreHandler)
            PyOS_setsig(i, SIG_DFL);
        Py_XDECREF(func);
    }

1533 1534 1535
    Py_CLEAR(IntHandler);
    Py_CLEAR(DefaultHandler);
    Py_CLEAR(IgnoreHandler);
1536 1537
}

Barry Warsaw's avatar
Barry Warsaw committed
1538 1539

/* Declared in pyerrors.h */
1540
int
1541
PyErr_CheckSignals(void)
1542
{
1543 1544
    int i;
    PyObject *f;
Barry Warsaw's avatar
Barry Warsaw committed
1545

1546 1547
    if (!is_tripped)
        return 0;
1548

1549
#ifdef WITH_THREAD
1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591
    if (PyThread_get_thread_ident() != main_thread)
        return 0;
#endif

    /*
     * 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.
     */
    is_tripped = 0;

    if (!(f = (PyObject *)PyEval_GetFrame()))
        f = Py_None;

    for (i = 1; i < NSIG; i++) {
        if (Handlers[i].tripped) {
            PyObject *result = NULL;
            PyObject *arglist = Py_BuildValue("(iO)", i, f);
            Handlers[i].tripped = 0;

            if (arglist) {
                result = PyEval_CallObject(Handlers[i].func,
                                           arglist);
                Py_DECREF(arglist);
            }
            if (!result)
                return -1;

            Py_DECREF(result);
        }
    }

    return 0;
1592 1593
}

1594

Barry Warsaw's avatar
Barry Warsaw committed
1595 1596 1597 1598
/* Replacements for intrcheck.c functionality
 * Declared in pyerrors.h
 */
void
1599
PyErr_SetInterrupt(void)
Barry Warsaw's avatar
Barry Warsaw committed
1600
{
1601
    trip_signal(SIGINT);
Barry Warsaw's avatar
Barry Warsaw committed
1602
}
1603 1604

void
1605
PyOS_InitInterrupts(void)
1606
{
1607
    PyObject *m = PyImport_ImportModule("_signal");
1608 1609 1610
    if (m) {
        Py_DECREF(m);
    }
1611 1612 1613
}

void
1614
PyOS_FiniInterrupts(void)
1615
{
1616
    finisignal();
1617 1618 1619
}

int
1620
PyOS_InterruptOccurred(void)
1621
{
1622
    if (Handlers[SIGINT].tripped) {
1623
#ifdef WITH_THREAD
1624 1625
        if (PyThread_get_thread_ident() != main_thread)
            return 0;
1626
#endif
1627 1628 1629 1630
        Handlers[SIGINT].tripped = 0;
        return 1;
    }
    return 0;
1631
}
1632

1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644
static void
_clear_pending_signals(void)
{
    int i;
    if (!is_tripped)
        return;
    is_tripped = 0;
    for (i = 1; i < NSIG; ++i) {
        Handlers[i].tripped = 0;
    }
}

1645
void
1646
PyOS_AfterFork(void)
1647
{
1648 1649 1650 1651
    /* 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();
1652
#ifdef WITH_THREAD
1653 1654 1655
    /* PyThread_ReInitTLS() must be called early, to make sure that the TLS API
     * can be called safely. */
    PyThread_ReInitTLS();
1656
    _PyGILState_Reinit();
1657 1658 1659 1660
    PyEval_ReInitThreads();
    main_thread = PyThread_get_thread_ident();
    main_pid = getpid();
    _PyImport_ReInitLock();
1661 1662
#endif
}
1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684

int
_PyOS_IsMainThread(void)
{
#ifdef WITH_THREAD
    return PyThread_get_thread_ident() == main_thread;
#else
    return 1;
#endif
}

#ifdef MS_WINDOWS
void *_PyOS_SigintEvent(void)
{
    /* 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. */
    return sigint_event;
}
#endif