Skip to content

Commit 5fb5e04

Browse files
Ulrich Dreppertorvalds
authored andcommitted
flag parameters: NONBLOCK in signalfd
This patch adds support for the SFD_NONBLOCK flag to signalfd4. The additional changes needed are minimal. The following test must be adjusted for architectures other than x86 and x86-64 and in case the syscall numbers changed. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ #include <fcntl.h> #include <signal.h> #include <stdio.h> #include <unistd.h> #include <sys/syscall.h> #ifndef __NR_signalfd4 # ifdef __x86_64__ # define __NR_signalfd4 289 # elif defined __i386__ # define __NR_signalfd4 327 # else # error "need __NR_signalfd4" # endif #endif #define SFD_NONBLOCK O_NONBLOCK int main (void) { sigset_t ss; sigemptyset (&ss); sigaddset (&ss, SIGUSR1); int fd = syscall (__NR_signalfd4, -1, &ss, 8, 0); if (fd == -1) { puts ("signalfd4(0) failed"); return 1; } int fl = fcntl (fd, F_GETFL); if (fl == -1) { puts ("fcntl failed"); return 1; } if (fl & O_NONBLOCK) { puts ("signalfd4(0) set non-blocking mode"); return 1; } close (fd); fd = syscall (__NR_signalfd4, -1, &ss, 8, SFD_NONBLOCK); if (fd == -1) { puts ("signalfd4(SFD_NONBLOCK) failed"); return 1; } fl = fcntl (fd, F_GETFL); if (fl == -1) { puts ("fcntl failed"); return 1; } if ((fl & O_NONBLOCK) == 0) { puts ("signalfd4(SFD_NONBLOCK) does not set non-blocking mode"); return 1; } close (fd); puts ("OK"); return 0; } ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Signed-off-by: Ulrich Drepper <drepper@redhat.com> Acked-by: Davide Libenzi <davidel@xmailserver.org> Cc: Michael Kerrisk <mtk.manpages@googlemail.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
1 parent 77d2720 commit 5fb5e04

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

fs/signalfd.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,7 @@ asmlinkage long sys_signalfd4(int ufd, sigset_t __user *user_mask,
211211
sigset_t sigmask;
212212
struct signalfd_ctx *ctx;
213213

214-
if (flags & ~SFD_CLOEXEC)
214+
if (flags & ~(SFD_CLOEXEC | SFD_NONBLOCK))
215215
return -EINVAL;
216216

217217
if (sizemask != sizeof(sigset_t) ||
@@ -232,7 +232,7 @@ asmlinkage long sys_signalfd4(int ufd, sigset_t __user *user_mask,
232232
* anon_inode_getfd() will install the fd.
233233
*/
234234
ufd = anon_inode_getfd("[signalfd]", &signalfd_fops, ctx,
235-
flags & O_CLOEXEC);
235+
flags & (O_CLOEXEC | O_NONBLOCK));
236236
if (ufd < 0)
237237
kfree(ctx);
238238
} else {

include/linux/signalfd.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,12 @@
88
#ifndef _LINUX_SIGNALFD_H
99
#define _LINUX_SIGNALFD_H
1010

11-
/* For O_CLOEXEC */
11+
/* For O_CLOEXEC and O_NONBLOCK */
1212
#include <linux/fcntl.h>
1313

1414
/* Flags for signalfd4. */
1515
#define SFD_CLOEXEC O_CLOEXEC
16+
#define SFD_NONBLOCK O_NONBLOCK
1617

1718
struct signalfd_siginfo {
1819
__u32 ssi_signo;

0 commit comments

Comments
 (0)