2011-07-25 02:50:11 +02:00
|
|
|
/***************************************************************************
|
|
|
|
|
|
|
|
gbx_signal.c
|
|
|
|
|
2013-08-03 17:38:01 +02:00
|
|
|
(c) 2000-2013 Benoît Minisini <gambas@users.sourceforge.net>
|
2011-07-25 02:50:11 +02:00
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation; either version 2, or (at your option)
|
|
|
|
any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program; if not, write to the Free Software
|
|
|
|
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
|
2011-12-31 03:39:20 +01:00
|
|
|
MA 02110-1301, USA.
|
2011-07-25 02:50:11 +02:00
|
|
|
|
|
|
|
***************************************************************************/
|
|
|
|
|
|
|
|
#define __GBX_SIGNAL_C
|
|
|
|
|
|
|
|
#include "gb_error.h"
|
2012-05-08 17:32:33 +02:00
|
|
|
#include "gb_array.h"
|
|
|
|
#include "gbx_api.h"
|
2011-07-25 02:50:11 +02:00
|
|
|
#include "gbx_signal.h"
|
|
|
|
|
2012-05-17 00:47:16 +02:00
|
|
|
//#define DEBUG_ME 1
|
2012-05-08 19:15:54 +02:00
|
|
|
|
2012-05-08 17:32:33 +02:00
|
|
|
static SIGNAL_HANDLER *_handlers = NULL;
|
2012-08-31 00:13:25 +02:00
|
|
|
static int _pipe[2] = { -1, -1 };
|
2012-07-30 13:46:12 +02:00
|
|
|
static volatile int _count = 0;
|
2012-08-31 00:13:25 +02:00
|
|
|
static int _raising_callback = 0;
|
2012-05-08 17:32:33 +02:00
|
|
|
|
2011-07-25 02:50:11 +02:00
|
|
|
void SIGNAL_install(SIGNAL_HANDLER *handler, int signum, void (*callback)(int, siginfo_t *, void *))
|
|
|
|
{
|
|
|
|
struct sigaction action;
|
|
|
|
|
2012-05-08 19:15:54 +02:00
|
|
|
#ifdef DEBUG_ME
|
2012-05-08 17:32:33 +02:00
|
|
|
fprintf(stderr, "SIGNAL_install: %d %p\n", signum, callback);
|
2012-05-08 19:15:54 +02:00
|
|
|
#endif
|
|
|
|
|
2012-05-08 17:32:33 +02:00
|
|
|
handler->signum = signum;
|
|
|
|
|
2011-07-25 02:50:11 +02:00
|
|
|
action.sa_flags = SA_SIGINFO;
|
|
|
|
sigemptyset(&action.sa_mask);
|
|
|
|
action.sa_sigaction = callback;
|
|
|
|
|
2012-03-29 18:43:01 +02:00
|
|
|
if (sigaction(signum, NULL, &handler->old_action) != 0 || sigaction(signum, &action, NULL) != 0)
|
2011-07-25 02:50:11 +02:00
|
|
|
ERROR_panic("Cannot install signal handler: %s", strerror(errno));
|
|
|
|
}
|
|
|
|
|
2012-05-08 17:32:33 +02:00
|
|
|
void SIGNAL_uninstall(SIGNAL_HANDLER *handler, int signum)
|
2011-07-25 02:50:11 +02:00
|
|
|
{
|
2012-05-08 19:15:54 +02:00
|
|
|
#ifdef DEBUG_ME
|
2012-05-08 17:32:33 +02:00
|
|
|
fprintf(stderr, "SIGNAL_uninstall: %d\n", signum);
|
2012-05-08 19:15:54 +02:00
|
|
|
#endif
|
|
|
|
|
2012-05-08 17:32:33 +02:00
|
|
|
if (sigaction(signum, &handler->old_action, NULL) != 0)
|
2011-07-25 02:50:11 +02:00
|
|
|
ERROR_panic("Cannot uninstall signal handler");
|
2012-05-16 20:05:57 +02:00
|
|
|
|
|
|
|
while (handler->callbacks)
|
|
|
|
SIGNAL_unregister(handler->signum, handler->callbacks);
|
2011-07-25 02:50:11 +02:00
|
|
|
}
|
|
|
|
|
2012-05-08 17:32:33 +02:00
|
|
|
void SIGNAL_previous(SIGNAL_HANDLER *handler, int signum, siginfo_t *info, void *context)
|
2011-07-25 02:50:11 +02:00
|
|
|
{
|
|
|
|
if (handler->old_action.sa_handler != SIG_DFL && handler->old_action.sa_handler != SIG_IGN)
|
|
|
|
{
|
|
|
|
if (handler->old_action.sa_flags & SA_SIGINFO)
|
|
|
|
{
|
|
|
|
//fprintf(stderr, "Calling old action %p\n", _old_SIGCHLD_action.sa_sigaction);
|
2012-05-08 17:32:33 +02:00
|
|
|
(*handler->old_action.sa_sigaction)(signum, info, context);
|
2011-07-25 02:50:11 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
//fprintf(stderr, "Calling old handler %p\n", _old_SIGCHLD_action.sa_handler);
|
2012-05-08 17:32:33 +02:00
|
|
|
(*handler->old_action.sa_handler)(signum);
|
2011-07-25 02:50:11 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-05-08 17:32:33 +02:00
|
|
|
static SIGNAL_HANDLER *find_handler(int signum)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; i < ARRAY_count(_handlers); i++)
|
|
|
|
{
|
|
|
|
if (_handlers[i].signum == signum)
|
|
|
|
return &_handlers[i];
|
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static SIGNAL_HANDLER *add_handler(void)
|
|
|
|
{
|
|
|
|
if (!_handlers)
|
|
|
|
ARRAY_create_inc(&_handlers, 1);
|
|
|
|
|
|
|
|
return ARRAY_add_void(&_handlers);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void handle_signal(int signum, siginfo_t *info, void *context)
|
|
|
|
{
|
|
|
|
char buffer;
|
|
|
|
int save_errno;
|
|
|
|
|
|
|
|
save_errno = errno;
|
2012-07-30 13:46:12 +02:00
|
|
|
|
|
|
|
if (_count)
|
2012-05-08 17:32:33 +02:00
|
|
|
{
|
2012-07-30 13:46:12 +02:00
|
|
|
buffer = signum;
|
|
|
|
for(;;)
|
|
|
|
{
|
|
|
|
if (write(_pipe[1], &buffer, 1) == 1)
|
|
|
|
break;
|
|
|
|
|
|
|
|
if (errno != EINTR)
|
2012-08-29 02:43:48 +02:00
|
|
|
ERROR_panic("Cannot write signal #%d into signal pipe: %s", signum, strerror(errno));
|
2012-07-30 13:46:12 +02:00
|
|
|
}
|
2012-05-08 17:32:33 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
SIGNAL_previous(find_handler(signum), signum, info, context);
|
|
|
|
|
|
|
|
errno = save_errno;
|
|
|
|
}
|
|
|
|
|
2012-08-31 00:13:25 +02:00
|
|
|
static bool _must_purge_callbacks = FALSE;
|
2012-05-19 04:55:05 +02:00
|
|
|
static int _purge_signum;
|
|
|
|
static SIGNAL_HANDLER *_purge_handler;
|
|
|
|
|
|
|
|
static void purge_callbacks(void)
|
|
|
|
{
|
|
|
|
SIGNAL_CALLBACK *cb, *next_cb;
|
2013-08-12 22:01:24 +02:00
|
|
|
|
2012-08-31 00:13:25 +02:00
|
|
|
_raising_callback--;
|
|
|
|
if (_raising_callback)
|
|
|
|
return;
|
2012-05-19 04:55:05 +02:00
|
|
|
|
2013-08-12 22:01:24 +02:00
|
|
|
#ifdef DEBUG_ME
|
|
|
|
fprintf(stderr, ">> purge_callbacks\n");
|
|
|
|
#endif
|
|
|
|
|
|
|
|
while (_must_purge_callbacks)
|
2012-05-19 04:55:05 +02:00
|
|
|
{
|
2013-08-12 22:01:24 +02:00
|
|
|
_must_purge_callbacks = FALSE;
|
|
|
|
|
2012-05-19 04:55:05 +02:00
|
|
|
cb = _purge_handler->callbacks;
|
|
|
|
while (cb)
|
|
|
|
{
|
2013-08-12 22:01:24 +02:00
|
|
|
#ifdef DEBUG_ME
|
|
|
|
fprintf(stderr, "purge_callbacks: cb = %p\n", cb);
|
|
|
|
#endif
|
2012-05-19 04:55:05 +02:00
|
|
|
next_cb = cb->next;
|
2013-08-12 22:01:24 +02:00
|
|
|
|
2012-05-19 04:55:05 +02:00
|
|
|
if (!cb->callback)
|
|
|
|
SIGNAL_unregister(_purge_signum, cb);
|
|
|
|
|
|
|
|
cb = next_cb;
|
|
|
|
}
|
|
|
|
}
|
2013-08-12 22:01:24 +02:00
|
|
|
|
|
|
|
#ifdef DEBUG_ME
|
|
|
|
fprintf(stderr, "<< purge_callbacks\n");
|
|
|
|
#endif
|
2012-05-19 04:55:05 +02:00
|
|
|
}
|
|
|
|
|
2012-05-08 17:32:33 +02:00
|
|
|
void SIGNAL_raise_callbacks(int fd, int type, void *data)
|
|
|
|
{
|
|
|
|
SIGNAL_HANDLER *handler;
|
2012-05-19 04:55:05 +02:00
|
|
|
SIGNAL_CALLBACK *cb;
|
2012-05-08 17:32:33 +02:00
|
|
|
char signum;
|
|
|
|
|
|
|
|
/*old = signal(SIGCHLD, signal_child);*/
|
|
|
|
|
|
|
|
if (read(fd, &signum, 1) != 1)
|
|
|
|
return;
|
|
|
|
|
2012-05-19 04:55:05 +02:00
|
|
|
handler = find_handler(signum);
|
2013-08-12 22:01:24 +02:00
|
|
|
if (!handler)
|
|
|
|
return;
|
2012-05-19 04:55:05 +02:00
|
|
|
|
2013-08-12 22:01:24 +02:00
|
|
|
#ifdef DEBUG_ME
|
|
|
|
fprintf(stderr, ">> SIGNAL_raise_callbacks (%d)\n", _raising_callback);
|
|
|
|
#endif
|
|
|
|
|
2012-08-31 00:13:25 +02:00
|
|
|
_raising_callback++;
|
2012-05-19 04:55:05 +02:00
|
|
|
_purge_signum = signum;
|
|
|
|
_purge_handler = handler;
|
2012-05-16 20:05:57 +02:00
|
|
|
|
2012-05-19 04:55:05 +02:00
|
|
|
ON_ERROR(purge_callbacks)
|
2012-05-08 17:32:33 +02:00
|
|
|
{
|
2012-05-19 04:55:05 +02:00
|
|
|
cb = handler->callbacks;
|
|
|
|
while (cb)
|
|
|
|
{
|
2013-08-12 22:01:24 +02:00
|
|
|
#ifdef DEBUG_ME
|
|
|
|
fprintf(stderr, "SIGNAL_raise_callbacks: cb = %p cb->callback = %p\n", cb, cb->callback);
|
|
|
|
#endif
|
2012-05-19 04:55:05 +02:00
|
|
|
if (cb->callback)
|
|
|
|
(*cb->callback)((int)signum, cb->data);
|
|
|
|
|
|
|
|
cb = cb->next;
|
|
|
|
}
|
2012-05-08 17:32:33 +02:00
|
|
|
}
|
2012-05-19 04:55:05 +02:00
|
|
|
END_ERROR
|
2012-05-16 20:05:57 +02:00
|
|
|
|
2013-08-12 22:01:24 +02:00
|
|
|
#ifdef DEBUG_ME
|
|
|
|
fprintf(stderr, "SIGNAL_raise_callbacks: purge_callbacks\n");
|
|
|
|
#endif
|
2012-05-19 04:55:05 +02:00
|
|
|
purge_callbacks();
|
2013-08-12 22:01:24 +02:00
|
|
|
|
|
|
|
#ifdef DEBUG_ME
|
|
|
|
fprintf(stderr, "<< SIGNAL_raise_callbacks (%d)\n", _raising_callback);
|
|
|
|
#endif
|
2012-05-08 17:32:33 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
SIGNAL_CALLBACK *SIGNAL_register(int signum, void (*callback)(int, intptr_t), intptr_t data)
|
|
|
|
{
|
2012-05-16 20:05:57 +02:00
|
|
|
SIGNAL_HANDLER *handler;
|
2012-05-08 17:32:33 +02:00
|
|
|
SIGNAL_CALLBACK *cb;
|
|
|
|
|
|
|
|
if (!_count)
|
|
|
|
{
|
|
|
|
if (pipe(_pipe) != 0)
|
|
|
|
ERROR_panic("Cannot create signal handler pipes: %s", strerror(errno));
|
|
|
|
|
|
|
|
fcntl(_pipe[0], F_SETFD, FD_CLOEXEC);
|
|
|
|
fcntl(_pipe[1], F_SETFD, FD_CLOEXEC);
|
2012-08-29 02:43:48 +02:00
|
|
|
// Allows to read the signal pipe without blocking
|
|
|
|
fcntl(_pipe[0], F_SETFL, fcntl(_pipe[0], F_GETFL) | O_NONBLOCK);
|
2012-05-08 17:32:33 +02:00
|
|
|
|
|
|
|
GB_Watch(_pipe[0], GB_WATCH_READ, (void *)SIGNAL_raise_callbacks, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
_count++;
|
|
|
|
|
2012-05-16 20:05:57 +02:00
|
|
|
handler = find_handler(signum);
|
2012-05-08 17:32:33 +02:00
|
|
|
if (!handler)
|
|
|
|
{
|
|
|
|
handler = add_handler();
|
|
|
|
SIGNAL_install(handler, signum, handle_signal);
|
|
|
|
}
|
|
|
|
|
2013-03-30 00:33:01 +01:00
|
|
|
ALLOC(&cb, sizeof(SIGNAL_CALLBACK));
|
2012-05-08 17:32:33 +02:00
|
|
|
|
|
|
|
cb->prev = NULL;
|
|
|
|
cb->next = handler->callbacks;
|
|
|
|
cb->callback = callback;
|
|
|
|
cb->data = data;
|
2012-05-16 20:05:57 +02:00
|
|
|
|
2013-08-12 22:01:24 +02:00
|
|
|
if (cb->next)
|
|
|
|
cb->next->prev = cb;
|
2012-05-16 20:05:57 +02:00
|
|
|
handler->callbacks = cb;
|
2012-05-08 17:32:33 +02:00
|
|
|
|
2012-05-08 19:15:54 +02:00
|
|
|
#ifdef DEBUG_ME
|
2012-05-16 23:42:28 +02:00
|
|
|
fprintf(stderr, "SIGNAL_register: %d -> %p (%p)\n", signum, cb, cb->callback);
|
2012-05-08 19:15:54 +02:00
|
|
|
#endif
|
2012-05-08 17:32:33 +02:00
|
|
|
|
2013-08-12 22:01:24 +02:00
|
|
|
#ifdef DEBUG_ME
|
|
|
|
fprintf(stderr, "handler->callbacks %p:", handler);
|
|
|
|
SIGNAL_CALLBACK *save = cb;
|
|
|
|
cb = handler->callbacks;
|
|
|
|
while (cb)
|
|
|
|
{
|
|
|
|
fprintf(stderr, " -> %p (%p)", cb, cb->callback);
|
|
|
|
cb = cb->next;
|
|
|
|
}
|
|
|
|
fprintf(stderr, "\n");
|
|
|
|
cb = save;
|
|
|
|
#endif
|
|
|
|
|
2012-05-08 17:32:33 +02:00
|
|
|
return cb;
|
|
|
|
}
|
|
|
|
|
|
|
|
void SIGNAL_unregister(int signum, SIGNAL_CALLBACK *cb)
|
|
|
|
{
|
|
|
|
SIGNAL_HANDLER *handler = find_handler(signum);
|
|
|
|
|
|
|
|
if (!handler)
|
|
|
|
return;
|
|
|
|
|
2012-05-16 20:05:57 +02:00
|
|
|
if (_raising_callback)
|
|
|
|
{
|
2012-05-16 23:42:28 +02:00
|
|
|
#ifdef DEBUG_ME
|
|
|
|
fprintf(stderr, "SIGNAL_unregister: disable %d %p (%p)\n", signum, cb, cb->callback);
|
|
|
|
#endif
|
2012-05-16 20:05:57 +02:00
|
|
|
cb->callback = NULL;
|
2012-05-19 04:55:05 +02:00
|
|
|
_must_purge_callbacks = TRUE;
|
2012-05-16 20:05:57 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2012-05-16 23:42:28 +02:00
|
|
|
#ifdef DEBUG_ME
|
|
|
|
fprintf(stderr, "SIGNAL_unregister: remove %d %p (%p)\n", signum, cb, cb->callback);
|
|
|
|
#endif
|
|
|
|
|
2012-05-08 17:32:33 +02:00
|
|
|
if (cb->prev)
|
|
|
|
cb->prev->next = cb->next;
|
|
|
|
|
|
|
|
if (cb->next)
|
|
|
|
cb->next->prev = cb->prev;
|
|
|
|
|
|
|
|
if (cb == handler->callbacks)
|
|
|
|
handler->callbacks = cb->next;
|
|
|
|
|
2013-08-12 22:01:24 +02:00
|
|
|
IFREE(cb);
|
2012-05-08 17:32:33 +02:00
|
|
|
|
|
|
|
_count--;
|
|
|
|
|
|
|
|
if (_count == 0)
|
|
|
|
{
|
|
|
|
GB_Watch(_pipe[0], GB_WATCH_NONE, NULL, 0);
|
|
|
|
close(_pipe[0]);
|
|
|
|
close(_pipe[1]);
|
2012-08-31 00:13:25 +02:00
|
|
|
_pipe[0] = -1;
|
|
|
|
_pipe[1] = -1;
|
2012-05-08 17:32:33 +02:00
|
|
|
}
|
2012-08-31 00:13:25 +02:00
|
|
|
|
2013-08-12 22:01:24 +02:00
|
|
|
#ifdef DEBUG_ME
|
|
|
|
fprintf(stderr, "handler->callbacks %p:", handler);
|
|
|
|
cb = handler->callbacks;
|
|
|
|
while (cb)
|
|
|
|
{
|
|
|
|
fprintf(stderr, " -> %p (%p)", cb, cb->callback);
|
|
|
|
cb = cb->next;
|
|
|
|
}
|
|
|
|
fprintf(stderr, "\n");
|
|
|
|
#endif
|
2012-05-08 17:32:33 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void SIGNAL_exit(void)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
SIGNAL_HANDLER *handler;
|
|
|
|
|
|
|
|
if (_handlers)
|
|
|
|
{
|
|
|
|
for (i = 0; i < ARRAY_count(_handlers); i++)
|
|
|
|
{
|
|
|
|
handler = &_handlers[i];
|
|
|
|
SIGNAL_uninstall(handler, handler->signum);
|
|
|
|
}
|
|
|
|
|
|
|
|
ARRAY_delete(&_handlers);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
int SIGNAL_get_fd(void)
|
|
|
|
{
|
|
|
|
return _pipe[0];
|
|
|
|
}
|