2004-02-12 18:55:09 +03:00
|
|
|
/* $OpenBSD: select.c,v 1.2 2002/06/25 15:50:15 mickey Exp $ */
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Copyright 2000-2002 Niels Provos <provos@citi.umich.edu>
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
* 3. The name of the author may not be used to endorse or promote products
|
|
|
|
* derived from this software without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
|
|
|
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
|
|
|
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
|
|
|
* IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
|
|
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
|
|
|
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
|
|
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
|
|
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
|
|
|
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*/
|
2004-06-07 19:33:53 +04:00
|
|
|
#include "ompi_config.h"
|
2004-02-12 18:55:09 +03:00
|
|
|
|
2004-10-20 05:03:09 +04:00
|
|
|
#ifdef HAVE_SYS_TYPES_H
|
2004-02-12 18:55:09 +03:00
|
|
|
#include <sys/types.h>
|
2004-10-20 05:03:09 +04:00
|
|
|
#endif
|
2004-02-12 18:55:09 +03:00
|
|
|
#ifdef HAVE_SYS_TIME_H
|
|
|
|
#include <sys/time.h>
|
|
|
|
#else
|
|
|
|
#include <sys/_time.h>
|
|
|
|
#endif
|
|
|
|
#include <sys/queue.h>
|
|
|
|
#include <signal.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
2004-10-20 05:03:09 +04:00
|
|
|
#ifdef HAVE_UNISTD_H
|
2004-02-12 18:55:09 +03:00
|
|
|
#include <unistd.h>
|
2004-10-20 05:03:09 +04:00
|
|
|
#endif
|
2004-02-12 18:55:09 +03:00
|
|
|
#include <errno.h>
|
|
|
|
#include <err.h>
|
2005-03-14 23:57:21 +03:00
|
|
|
#include <fcntl.h>
|
2004-02-12 18:55:09 +03:00
|
|
|
|
|
|
|
#ifdef USE_LOG
|
|
|
|
#include "log.h"
|
|
|
|
#else
|
|
|
|
#define LOG_DBG(x)
|
|
|
|
#define log_error(x) perror(x)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "event.h"
|
|
|
|
#include "evsignal.h"
|
2005-07-04 03:31:27 +04:00
|
|
|
#include "opal/util/output.h"
|
2004-02-12 18:55:09 +03:00
|
|
|
|
2005-07-04 03:09:55 +04:00
|
|
|
extern struct opal_event_list opal_signalqueue;
|
2004-02-12 18:55:09 +03:00
|
|
|
|
2005-07-04 03:09:55 +04:00
|
|
|
static short opal_evsigcaught[NSIG];
|
|
|
|
static int opal_needrecalc;
|
2005-03-22 03:31:17 +03:00
|
|
|
#if 0
|
2005-07-04 03:09:55 +04:00
|
|
|
static int opal_event_signal_pipe[2];
|
|
|
|
static opal_event_t opal_event_signal_pipe_event;
|
2005-03-22 03:31:17 +03:00
|
|
|
#endif
|
2005-07-04 03:09:55 +04:00
|
|
|
volatile sig_atomic_t opal_event_signal_count = 0;
|
2004-11-18 19:09:59 +03:00
|
|
|
static bool initialized = false;
|
2005-07-04 03:09:55 +04:00
|
|
|
volatile sig_atomic_t opal_evsignal_caught = 0;
|
2004-02-12 18:55:09 +03:00
|
|
|
|
2005-03-22 03:31:17 +03:00
|
|
|
#if 0
|
2005-07-04 03:09:55 +04:00
|
|
|
static void opal_event_signal_pipe_handler(int sd, short flags, void* user)
|
2004-11-18 19:09:59 +03:00
|
|
|
{
|
2005-07-04 03:31:27 +04:00
|
|
|
opal_output(0, "opal_event_signal_pipe_handler: %d\n", opal_event_signal_count);
|
2005-07-04 03:09:55 +04:00
|
|
|
while(opal_event_signal_count-- > 0) {
|
2005-03-14 23:57:21 +03:00
|
|
|
char byte;
|
2005-07-04 03:09:55 +04:00
|
|
|
read(opal_event_signal_pipe[0], &byte, 1);
|
2004-11-18 19:09:59 +03:00
|
|
|
}
|
|
|
|
}
|
2005-03-22 03:31:17 +03:00
|
|
|
#endif
|
2004-11-18 19:09:59 +03:00
|
|
|
|
2005-07-04 03:09:55 +04:00
|
|
|
void opal_evsignal_handler(int sig);
|
2004-03-26 08:00:29 +03:00
|
|
|
|
2004-02-12 18:55:09 +03:00
|
|
|
void
|
2005-07-04 03:09:55 +04:00
|
|
|
opal_evsignal_init(sigset_t *evsigmask)
|
2004-02-12 18:55:09 +03:00
|
|
|
{
|
2005-04-13 06:29:33 +04:00
|
|
|
#ifndef WIN32
|
2004-11-18 19:09:59 +03:00
|
|
|
sigemptyset(evsigmask);
|
2005-04-13 06:29:33 +04:00
|
|
|
#endif
|
2004-02-12 18:55:09 +03:00
|
|
|
}
|
|
|
|
|
2004-11-18 19:09:59 +03:00
|
|
|
|
2004-02-12 18:55:09 +03:00
|
|
|
int
|
2005-07-04 03:09:55 +04:00
|
|
|
opal_evsignal_add(sigset_t *evsigmask, struct opal_event *ev)
|
2004-02-12 18:55:09 +03:00
|
|
|
{
|
|
|
|
int evsignal;
|
2004-11-18 19:09:59 +03:00
|
|
|
|
|
|
|
if (!initialized) {
|
2005-07-04 03:09:55 +04:00
|
|
|
opal_event_signal_count = 0;
|
2005-03-18 06:43:59 +03:00
|
|
|
#if 0
|
2004-11-18 19:09:59 +03:00
|
|
|
/* Must delay the event add until after init() because
|
|
|
|
it may trigger poll events that are not yet setup
|
|
|
|
to be triggered. */
|
2005-07-04 03:09:55 +04:00
|
|
|
pipe(opal_event_signal_pipe);
|
|
|
|
opal_event_set(&opal_event_signal_pipe_event,
|
|
|
|
opal_event_signal_pipe[0],
|
|
|
|
OPAL_EV_READ|OPAL_EV_PERSIST,
|
|
|
|
opal_event_signal_pipe_handler,
|
2004-11-18 19:09:59 +03:00
|
|
|
0);
|
2005-07-04 03:09:55 +04:00
|
|
|
opal_event_add_i(&opal_event_signal_pipe_event, 0);
|
2005-03-18 06:43:59 +03:00
|
|
|
#endif
|
2004-11-18 19:09:59 +03:00
|
|
|
initialized = true;
|
|
|
|
}
|
2004-02-12 18:55:09 +03:00
|
|
|
|
2005-07-04 03:09:55 +04:00
|
|
|
if (ev->ev_events & (OPAL_EV_READ|OPAL_EV_WRITE))
|
|
|
|
errx(1, "%s: OPAL_EV_SIGNAL incompatible use", __func__);
|
|
|
|
evsignal = OPAL_EVENT_SIGNAL(ev);
|
2005-04-13 06:29:33 +04:00
|
|
|
|
2005-05-13 21:59:36 +04:00
|
|
|
#if OMPI_ENABLE_PROGRESS_THREADS
|
2005-07-04 03:09:55 +04:00
|
|
|
if (!opal_using_threads()) opal_event_loop(OPAL_EVLOOP_NONBLOCK);
|
2005-05-13 21:59:36 +04:00
|
|
|
#else
|
2005-07-04 03:09:55 +04:00
|
|
|
opal_event_loop(OPAL_EVLOOP_NONBLOCK);
|
2005-05-13 21:59:36 +04:00
|
|
|
#endif
|
|
|
|
|
2005-04-13 06:29:33 +04:00
|
|
|
#ifndef WIN32
|
2004-02-12 18:55:09 +03:00
|
|
|
sigaddset(evsigmask, evsignal);
|
2005-04-13 06:29:33 +04:00
|
|
|
#endif
|
2004-02-12 18:55:09 +03:00
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
2005-03-14 23:57:21 +03:00
|
|
|
int
|
2005-07-04 03:09:55 +04:00
|
|
|
opal_evsignal_restart(void)
|
2005-03-14 23:57:21 +03:00
|
|
|
{
|
|
|
|
if(initialized) {
|
2005-07-04 03:09:55 +04:00
|
|
|
opal_event_signal_count = 0;
|
2005-03-18 06:43:59 +03:00
|
|
|
#if 0
|
2005-03-14 23:57:21 +03:00
|
|
|
int rc;
|
2005-07-04 03:09:55 +04:00
|
|
|
opal_event_del_i(&opal_event_signal_pipe_event);
|
|
|
|
if ((rc = pipe(opal_event_signal_pipe)) != 0) {
|
2005-03-14 23:57:21 +03:00
|
|
|
return rc;
|
|
|
|
}
|
2005-07-04 03:09:55 +04:00
|
|
|
opal_event_set(&opal_event_signal_pipe_event,
|
|
|
|
opal_event_signal_pipe[0],
|
|
|
|
OPAL_EV_READ|OPAL_EV_PERSIST,
|
|
|
|
opal_event_signal_pipe_handler,
|
2005-03-14 23:57:21 +03:00
|
|
|
0);
|
2005-07-04 03:09:55 +04:00
|
|
|
opal_event_add_i(&opal_event_signal_pipe_event, 0);
|
2005-03-18 06:43:59 +03:00
|
|
|
#endif
|
2005-03-14 23:57:21 +03:00
|
|
|
}
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
2004-02-12 18:55:09 +03:00
|
|
|
/*
|
|
|
|
* Nothing to be done here.
|
|
|
|
*/
|
|
|
|
|
|
|
|
int
|
2005-07-04 03:09:55 +04:00
|
|
|
opal_evsignal_del(sigset_t *evsigmask, struct opal_event *ev)
|
2004-02-12 18:55:09 +03:00
|
|
|
{
|
2005-04-13 06:29:33 +04:00
|
|
|
#ifdef WIN32
|
|
|
|
return 0;
|
|
|
|
#else
|
2004-02-12 18:55:09 +03:00
|
|
|
int evsignal;
|
2005-04-13 06:29:33 +04:00
|
|
|
struct sigaction sa;
|
|
|
|
|
2005-07-04 03:09:55 +04:00
|
|
|
evsignal = OPAL_EVENT_SIGNAL(ev);
|
2004-02-12 18:55:09 +03:00
|
|
|
sigdelset(evsigmask, evsignal);
|
2005-07-04 03:09:55 +04:00
|
|
|
opal_needrecalc = 1;
|
2004-02-12 18:55:09 +03:00
|
|
|
|
2005-03-22 03:31:17 +03:00
|
|
|
memset(&sa, 0, sizeof(sa));
|
2005-04-13 06:29:33 +04:00
|
|
|
sa.sa_handler = SIG_DFL;
|
|
|
|
|
|
|
|
return sigaction(evsignal, &sa, NULL);
|
|
|
|
#endif
|
2004-02-12 18:55:09 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2005-07-04 03:09:55 +04:00
|
|
|
opal_evsignal_handler(int sig)
|
2004-02-12 18:55:09 +03:00
|
|
|
{
|
2005-03-18 06:43:59 +03:00
|
|
|
#if 0
|
2005-03-14 23:57:21 +03:00
|
|
|
unsigned char byte = 0;
|
2005-03-18 06:43:59 +03:00
|
|
|
#endif
|
2004-11-18 19:09:59 +03:00
|
|
|
|
2005-07-04 03:09:55 +04:00
|
|
|
opal_evsigcaught[sig]++;
|
|
|
|
opal_evsignal_caught = 1;
|
2005-03-14 23:57:21 +03:00
|
|
|
|
|
|
|
#if 0
|
2005-07-04 03:09:55 +04:00
|
|
|
if(opal_event_signal_count == 0) {
|
|
|
|
opal_event_signal_count++;
|
|
|
|
write(opal_event_signal_pipe[1], &byte, 1);
|
2005-03-14 23:57:21 +03:00
|
|
|
}
|
|
|
|
#endif
|
2004-02-12 18:55:09 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2005-07-04 03:09:55 +04:00
|
|
|
opal_evsignal_recalc(sigset_t *evsigmask)
|
2004-02-12 18:55:09 +03:00
|
|
|
{
|
2005-04-13 06:29:33 +04:00
|
|
|
#ifdef WIN32
|
|
|
|
return 0;
|
|
|
|
#else
|
2004-02-12 18:55:09 +03:00
|
|
|
struct sigaction sa;
|
2005-07-04 03:09:55 +04:00
|
|
|
struct opal_event *ev;
|
2004-02-12 18:55:09 +03:00
|
|
|
|
2005-07-04 03:09:55 +04:00
|
|
|
if (TAILQ_FIRST(&opal_signalqueue) == NULL && !opal_needrecalc)
|
2004-02-12 18:55:09 +03:00
|
|
|
return (0);
|
2005-07-04 03:09:55 +04:00
|
|
|
opal_needrecalc = 0;
|
2004-02-12 18:55:09 +03:00
|
|
|
|
|
|
|
if (sigprocmask(SIG_BLOCK, evsigmask, NULL) == -1)
|
|
|
|
return (-1);
|
|
|
|
|
|
|
|
/* Reinstall our signal handler. */
|
|
|
|
memset(&sa, 0, sizeof(sa));
|
2005-07-04 03:09:55 +04:00
|
|
|
sa.sa_handler = opal_evsignal_handler;
|
2004-02-12 18:55:09 +03:00
|
|
|
sa.sa_mask = *evsigmask;
|
2004-12-17 00:37:57 +03:00
|
|
|
#if OMPI_HAVE_SA_RESTART
|
2004-02-12 18:55:09 +03:00
|
|
|
sa.sa_flags |= SA_RESTART;
|
2004-12-17 00:37:57 +03:00
|
|
|
#endif
|
2004-02-12 18:55:09 +03:00
|
|
|
|
2005-07-04 03:09:55 +04:00
|
|
|
TAILQ_FOREACH(ev, &opal_signalqueue, ev_signal_next) {
|
|
|
|
if (sigaction(OPAL_EVENT_SIGNAL(ev), &sa, NULL) == -1)
|
2004-02-12 18:55:09 +03:00
|
|
|
return (-1);
|
|
|
|
}
|
|
|
|
return (0);
|
2005-04-13 06:29:33 +04:00
|
|
|
#endif
|
2004-02-12 18:55:09 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2005-07-04 03:09:55 +04:00
|
|
|
opal_evsignal_deliver(sigset_t *evsigmask)
|
2004-02-12 18:55:09 +03:00
|
|
|
{
|
2005-07-04 03:09:55 +04:00
|
|
|
if (TAILQ_FIRST(&opal_signalqueue) == NULL)
|
2004-02-12 18:55:09 +03:00
|
|
|
return (0);
|
|
|
|
|
2005-04-13 06:29:33 +04:00
|
|
|
#ifdef WIN32
|
|
|
|
return 0;
|
|
|
|
#else
|
2004-02-12 18:55:09 +03:00
|
|
|
return (sigprocmask(SIG_UNBLOCK, evsigmask, NULL));
|
|
|
|
/* XXX - pending signals handled here */
|
2005-04-13 06:29:33 +04:00
|
|
|
#endif
|
2004-02-12 18:55:09 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2005-07-04 03:09:55 +04:00
|
|
|
opal_evsignal_process(void)
|
2004-02-12 18:55:09 +03:00
|
|
|
{
|
2005-07-04 03:09:55 +04:00
|
|
|
struct opal_event *ev;
|
2004-02-12 18:55:09 +03:00
|
|
|
short ncalls;
|
|
|
|
|
2005-07-04 03:09:55 +04:00
|
|
|
TAILQ_FOREACH(ev, &opal_signalqueue, ev_signal_next) {
|
|
|
|
ncalls = opal_evsigcaught[OPAL_EVENT_SIGNAL(ev)];
|
2004-02-12 18:55:09 +03:00
|
|
|
if (ncalls) {
|
2005-07-04 03:09:55 +04:00
|
|
|
if (!(ev->ev_events & OPAL_EV_PERSIST))
|
|
|
|
opal_event_del_i(ev);
|
|
|
|
opal_event_active_i(ev, OPAL_EV_SIGNAL, ncalls);
|
2004-02-12 18:55:09 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-07-04 03:09:55 +04:00
|
|
|
memset(opal_evsigcaught, 0, sizeof(opal_evsigcaught));
|
|
|
|
opal_evsignal_caught = 0;
|
2004-02-12 18:55:09 +03:00
|
|
|
}
|
|
|
|
|