2009-07-08 13:19:16 -07:00
|
|
|
|
/*
|
2013-04-05 12:25:50 -05:00
|
|
|
|
* Copyright (c) 2008, 2009, 2011, 2012, 2013 Nicira, Inc.
|
2009-07-08 13:19:16 -07:00
|
|
|
|
*
|
2009-06-15 15:11:30 -07:00
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
|
* You may obtain a copy of the License at:
|
2009-07-08 13:19:16 -07:00
|
|
|
|
*
|
2009-06-15 15:11:30 -07:00
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
*
|
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
|
* limitations under the License.
|
2009-07-08 13:19:16 -07:00
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
|
#include "signals.h"
|
|
|
|
|
#include <errno.h>
|
|
|
|
|
#include <limits.h>
|
|
|
|
|
#include <signal.h>
|
2011-06-07 13:17:57 -07:00
|
|
|
|
#include <stdlib.h>
|
2009-07-08 13:19:16 -07:00
|
|
|
|
#include <unistd.h>
|
|
|
|
|
#include "poll-loop.h"
|
|
|
|
|
#include "socket-util.h"
|
2011-04-01 10:22:51 -07:00
|
|
|
|
#include "type-props.h"
|
2009-07-08 13:19:16 -07:00
|
|
|
|
#include "util.h"
|
2011-03-31 16:23:50 -07:00
|
|
|
|
#include "vlog.h"
|
|
|
|
|
|
|
|
|
|
VLOG_DEFINE_THIS_MODULE(signals);
|
2009-07-08 13:19:16 -07:00
|
|
|
|
|
|
|
|
|
#if defined(_NSIG)
|
|
|
|
|
#define N_SIGNALS _NSIG
|
|
|
|
|
#elif defined(NSIG)
|
|
|
|
|
#define N_SIGNALS NSIG
|
|
|
|
|
#else
|
|
|
|
|
/* We could try harder to get the maximum signal number, but in practice we
|
|
|
|
|
* only care about SIGHUP, which is normally signal 1 anyway. */
|
|
|
|
|
#define N_SIGNALS 32
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
struct signal {
|
2011-06-07 13:17:57 -07:00
|
|
|
|
struct sigaction saved_sa;
|
2009-07-08 13:19:16 -07:00
|
|
|
|
int signr;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
static volatile sig_atomic_t signaled[N_SIGNALS];
|
|
|
|
|
|
|
|
|
|
static int fds[2];
|
|
|
|
|
|
|
|
|
|
static void signal_handler(int signr);
|
|
|
|
|
|
|
|
|
|
/* Initializes the signals subsystem (if it is not already initialized). Calls
|
|
|
|
|
* exit() if initialization fails.
|
|
|
|
|
*
|
|
|
|
|
* Calling this function is optional; it will be called automatically by
|
|
|
|
|
* signal_start() if necessary. Calling it explicitly allows the client to
|
|
|
|
|
* prevent the process from exiting at an unexpected time. */
|
|
|
|
|
void
|
|
|
|
|
signal_init(void)
|
|
|
|
|
{
|
|
|
|
|
static bool inited;
|
|
|
|
|
if (!inited) {
|
|
|
|
|
inited = true;
|
2012-09-28 21:06:41 +00:00
|
|
|
|
xpipe_nonblocking(fds);
|
2009-07-08 13:19:16 -07:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Sets up a handler for 'signr' and returns a structure that represents it.
|
|
|
|
|
*
|
|
|
|
|
* Only one handler for a given signal may be registered at a time. */
|
|
|
|
|
struct signal *
|
|
|
|
|
signal_register(int signr)
|
|
|
|
|
{
|
|
|
|
|
struct sigaction sa;
|
|
|
|
|
struct signal *s;
|
|
|
|
|
|
|
|
|
|
signal_init();
|
|
|
|
|
|
2011-06-07 13:17:57 -07:00
|
|
|
|
s = xmalloc(sizeof *s);
|
|
|
|
|
s->signr = signr;
|
|
|
|
|
|
2009-07-08 13:19:16 -07:00
|
|
|
|
/* Set up signal handler. */
|
2012-11-06 13:14:55 -08:00
|
|
|
|
ovs_assert(signr >= 1 && signr < N_SIGNALS);
|
2009-07-08 13:19:16 -07:00
|
|
|
|
memset(&sa, 0, sizeof sa);
|
|
|
|
|
sa.sa_handler = signal_handler;
|
|
|
|
|
sigemptyset(&sa.sa_mask);
|
|
|
|
|
sa.sa_flags = SA_RESTART;
|
2011-06-07 13:17:57 -07:00
|
|
|
|
xsigaction(signr, &sa, &s->saved_sa);
|
2009-07-08 13:19:16 -07:00
|
|
|
|
|
|
|
|
|
return s;
|
|
|
|
|
}
|
|
|
|
|
|
2011-06-07 13:17:57 -07:00
|
|
|
|
/* Unregisters the handler for 's', restores the signal handler that was in
|
|
|
|
|
* effect before signal_register() was called, and frees 's'. */
|
|
|
|
|
void
|
|
|
|
|
signal_unregister(struct signal *s)
|
|
|
|
|
{
|
|
|
|
|
if (s) {
|
|
|
|
|
xsigaction(s->signr, &s->saved_sa, NULL);
|
|
|
|
|
free(s);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2009-07-08 13:19:16 -07:00
|
|
|
|
/* Returns true if signal 's' has been received since the last call to this
|
|
|
|
|
* function with argument 's'. */
|
|
|
|
|
bool
|
|
|
|
|
signal_poll(struct signal *s)
|
|
|
|
|
{
|
|
|
|
|
char buf[_POSIX_PIPE_BUF];
|
2009-12-14 23:08:10 -08:00
|
|
|
|
ignore(read(fds[0], buf, sizeof buf));
|
2009-07-08 13:19:16 -07:00
|
|
|
|
if (signaled[s->signr]) {
|
|
|
|
|
signaled[s->signr] = 0;
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Causes the next call to poll_block() to wake up when signal_poll(s) would
|
|
|
|
|
* return true. */
|
|
|
|
|
void
|
|
|
|
|
signal_wait(struct signal *s)
|
|
|
|
|
{
|
|
|
|
|
if (signaled[s->signr]) {
|
|
|
|
|
poll_immediate_wake();
|
|
|
|
|
} else {
|
|
|
|
|
poll_fd_wait(fds[0], POLLIN);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
signal_handler(int signr)
|
|
|
|
|
{
|
|
|
|
|
if (signr >= 1 && signr < N_SIGNALS) {
|
2009-12-14 23:08:10 -08:00
|
|
|
|
ignore(write(fds[1], "", 1));
|
2009-07-08 13:19:16 -07:00
|
|
|
|
signaled[signr] = true;
|
|
|
|
|
}
|
|
|
|
|
}
|
2011-04-01 10:22:51 -07:00
|
|
|
|
|
|
|
|
|
/* Returns the name of signal 'signum' as a string. The string may be in a
|
|
|
|
|
* static buffer that is reused from one call to the next.
|
|
|
|
|
*
|
|
|
|
|
* The string is probably a (possibly multi-word) description of the signal
|
|
|
|
|
* (e.g. "Hangup") instead of just the stringified version of the macro
|
|
|
|
|
* (e.g. "SIGHUP"). */
|
|
|
|
|
const char *
|
|
|
|
|
signal_name(int signum)
|
|
|
|
|
{
|
|
|
|
|
const char *name = NULL;
|
2013-04-04 23:29:59 -05:00
|
|
|
|
|
|
|
|
|
#if HAVE_DECL_SYS_SIGLIST
|
|
|
|
|
if (signum >= 0 && signum < ARRAY_SIZE(sys_siglist)) {
|
|
|
|
|
name = sys_siglist[signum];
|
|
|
|
|
}
|
2011-04-01 10:22:51 -07:00
|
|
|
|
#endif
|
2013-04-04 23:29:59 -05:00
|
|
|
|
|
2011-04-01 10:22:51 -07:00
|
|
|
|
if (!name) {
|
|
|
|
|
static char buffer[7 + INT_STRLEN(int) + 1];
|
|
|
|
|
sprintf(buffer, "signal %d", signum);
|
|
|
|
|
name = buffer;
|
|
|
|
|
}
|
|
|
|
|
return name;
|
|
|
|
|
}
|
2011-03-31 16:23:50 -07:00
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
xsigaction(int signum, const struct sigaction *new, struct sigaction *old)
|
|
|
|
|
{
|
|
|
|
|
if (sigaction(signum, new, old)) {
|
|
|
|
|
VLOG_FATAL("sigaction(%s) failed (%s)",
|
|
|
|
|
signal_name(signum), strerror(errno));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
2013-04-05 12:25:50 -05:00
|
|
|
|
xpthread_sigmask(int how, const sigset_t *new, sigset_t *old)
|
2011-03-31 16:23:50 -07:00
|
|
|
|
{
|
2013-04-05 12:25:50 -05:00
|
|
|
|
int error = pthread_sigmask(how, new, old);
|
|
|
|
|
if (error) {
|
|
|
|
|
VLOG_FATAL("pthread_sigmask failed (%s)", strerror(error));
|
2011-03-31 16:23:50 -07:00
|
|
|
|
}
|
|
|
|
|
}
|