From: bruce@perens.com (Bruce Perens)
To: linux-kernel@vger.kernel.org
Cc: torvalds@osdl.org
Subject: Signal left blocked after signal handler.
Date: Wed, 26 Nov 2003 09:39:53 -0800 [thread overview]
Message-ID: <20031126173953.GA3534@perens.com> (raw)
Hi,
A signal should be blocked while its signal handler is executing, and
then unblocked when the handler returns - unless SA_NOMASK is set.
-test9 and -test10 leave the signal _blocked_forever_.
This causes the build-time confidence test for Electric Fence to break,
and no doubt lots of other code.
If SA_NOMASK is set, the signal is not blocked.
Test program attached below.
Thanks
Bruce
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <signal.h>
#include <setjmp.h>
static sigjmp_buf sjbuf;
static int sig = SIGINT;
static void
handler(int i)
{
struct sigaction act;
memset((void *)&act, 0, sizeof(act));
act.sa_handler = SIG_DFL;
fprintf(stderr, "Signal handler hit!\n");
fflush(stderr);
sigaction(sig, &act, 0);
siglongjmp(sjbuf, 1);
}
static void
invoke_signal()
{
struct sigaction act;
memset((void *)&act, 0, sizeof(act));
act.sa_handler = handler;
/* act.sa_flags = SA_NOMASK; */
if ( sigsetjmp(sjbuf, 0) == 0 ) {
sigaction(sig, &act, 0);
fprintf(stderr, "Sending signal... ");
fflush(stderr);
kill(getpid(), sig);
fprintf(stderr, "Huh? Nothing happened. Signal was left blocked.\n");
}
}
int
main(int argc, char * * argv)
{
sigset_t set;
sigemptyset(&set);
sigaddset(&set, sig);
invoke_signal();
invoke_signal();
fprintf(stderr, "Unblocking signal... ");
if ( sigsetjmp(sjbuf, 0) == 0 ) {
sigprocmask(SIG_UNBLOCK, &set, 0);
}
return 0;
}
next reply other threads:[~2003-11-26 17:39 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2003-11-26 17:39 Bruce Perens [this message]
2003-11-26 17:55 ` Signal left blocked after signal handler Linus Torvalds
[not found] ` <3FC4ED5F.4090901@perens.com>
2003-11-26 18:21 ` Linus Torvalds
[not found] ` <3FC4EF24.9040307@perens.com>
2003-11-26 18:34 ` Linus Torvalds
[not found] ` <3FC4F248.8060307@perens.com>
2003-11-26 18:45 ` Never mind. " Linus Torvalds
2003-11-26 19:04 ` Bruce Perens
2003-11-26 19:14 ` Linus Torvalds
2003-11-26 19:34 ` Posix says "undefined". " Bruce Perens
2003-11-26 19:52 ` Never mind. " Jamie Lokier
2003-11-27 9:20 ` Herbert Xu
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20031126173953.GA3534@perens.com \
--to=bruce@perens.com \
--cc=linux-kernel@vger.kernel.org \
--cc=torvalds@osdl.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.