blob: 65ce0e72e7b9588d344ee715cee6838f7e1cb4e1 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Davide Libenzifba2afa2007-05-10 22:23:13 -07002/*
3 * fs/signalfd.c
4 *
5 * Copyright (C) 2003 Linus Torvalds
6 *
7 * Mon Mar 5, 2007: Davide Libenzi <davidel@xmailserver.org>
8 * Changed ->read() to return a siginfo strcture instead of signal number.
9 * Fixed locking in ->poll().
10 * Added sighand-detach notification.
11 * Added fd re-use in sys_signalfd() syscall.
12 * Now using anonymous inode source.
13 * Thanks to Oleg Nesterov for useful code review and suggestions.
14 * More comments and suggestions from Arnd Bergmann.
Davide Libenzib8fceee2007-09-20 12:40:16 -070015 * Sat May 19, 2007: Davi E. M. Arnaut <davi@haxent.com.br>
Davi Arnautb3762bf2007-05-23 13:58:04 -070016 * Retrieve multiple signals with one read() call
Davide Libenzib8fceee2007-09-20 12:40:16 -070017 * Sun Jul 15, 2007: Davide Libenzi <davidel@xmailserver.org>
18 * Attach to the sighand only during read() and poll().
Davide Libenzifba2afa2007-05-10 22:23:13 -070019 */
20
21#include <linux/file.h>
22#include <linux/poll.h>
23#include <linux/init.h>
24#include <linux/fs.h>
25#include <linux/sched.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090026#include <linux/slab.h>
Davide Libenzifba2afa2007-05-10 22:23:13 -070027#include <linux/kernel.h>
28#include <linux/signal.h>
29#include <linux/list.h>
30#include <linux/anon_inodes.h>
31#include <linux/signalfd.h>
Adrian Bunk7ec37df2008-02-06 01:36:48 -080032#include <linux/syscalls.h>
Cyrill Gorcunov138d22b2012-12-17 16:05:02 -080033#include <linux/proc_fs.h>
Al Viro7d197ed2013-02-24 01:41:39 -050034#include <linux/compat.h>
Davide Libenzifba2afa2007-05-10 22:23:13 -070035
Oleg Nesterovd80e7312012-02-24 20:07:11 +010036void signalfd_cleanup(struct sighand_struct *sighand)
37{
Eric Biggers9537bae2021-12-08 17:04:53 -080038 wake_up_pollfree(&sighand->signalfd_wqh);
Oleg Nesterovd80e7312012-02-24 20:07:11 +010039}
40
Davide Libenzifba2afa2007-05-10 22:23:13 -070041struct signalfd_ctx {
Davide Libenzifba2afa2007-05-10 22:23:13 -070042 sigset_t sigmask;
Davide Libenzifba2afa2007-05-10 22:23:13 -070043};
44
Davide Libenzifba2afa2007-05-10 22:23:13 -070045static int signalfd_release(struct inode *inode, struct file *file)
46{
Davide Libenzib8fceee2007-09-20 12:40:16 -070047 kfree(file->private_data);
Davide Libenzifba2afa2007-05-10 22:23:13 -070048 return 0;
49}
50
Al Viro076ccb72017-07-03 01:02:18 -040051static __poll_t signalfd_poll(struct file *file, poll_table *wait)
Davide Libenzifba2afa2007-05-10 22:23:13 -070052{
53 struct signalfd_ctx *ctx = file->private_data;
Al Viro076ccb72017-07-03 01:02:18 -040054 __poll_t events = 0;
Davide Libenzifba2afa2007-05-10 22:23:13 -070055
Davide Libenzib8fceee2007-09-20 12:40:16 -070056 poll_wait(file, &current->sighand->signalfd_wqh, wait);
Davide Libenzifba2afa2007-05-10 22:23:13 -070057
Davide Libenzib8fceee2007-09-20 12:40:16 -070058 spin_lock_irq(&current->sighand->siglock);
59 if (next_signal(&current->pending, &ctx->sigmask) ||
60 next_signal(&current->signal->shared_pending,
61 &ctx->sigmask))
Linus Torvaldsa9a08842018-02-11 14:34:03 -080062 events |= EPOLLIN;
Davide Libenzib8fceee2007-09-20 12:40:16 -070063 spin_unlock_irq(&current->sighand->siglock);
Davide Libenzifba2afa2007-05-10 22:23:13 -070064
65 return events;
66}
67
68/*
69 * Copied from copy_siginfo_to_user() in kernel/signal.c
70 */
71static int signalfd_copyinfo(struct signalfd_siginfo __user *uinfo,
Eric W. Biedermanae7795b2018-09-25 11:27:20 +020072 kernel_siginfo_t const *kinfo)
Davide Libenzifba2afa2007-05-10 22:23:13 -070073{
Eric W. Biederman5611f552018-04-24 20:39:16 -050074 struct signalfd_siginfo new;
Davide Libenzifba2afa2007-05-10 22:23:13 -070075
76 BUILD_BUG_ON(sizeof(struct signalfd_siginfo) != 128);
77
78 /*
Robert P. J. Day14e4a0f2008-02-03 15:12:15 +020079 * Unused members should be zero ...
Davide Libenzifba2afa2007-05-10 22:23:13 -070080 */
Eric W. Biederman5611f552018-04-24 20:39:16 -050081 memset(&new, 0, sizeof(new));
Davide Libenzifba2afa2007-05-10 22:23:13 -070082
83 /*
84 * If you change siginfo_t structure, please be sure
85 * this code is fixed accordingly.
86 */
Eric W. Biederman5611f552018-04-24 20:39:16 -050087 new.ssi_signo = kinfo->si_signo;
88 new.ssi_errno = kinfo->si_errno;
89 new.ssi_code = kinfo->si_code;
Eric W. Biedermancc731522017-07-16 22:36:59 -050090 switch (siginfo_layout(kinfo->si_signo, kinfo->si_code)) {
91 case SIL_KILL:
Eric W. Biederman5611f552018-04-24 20:39:16 -050092 new.ssi_pid = kinfo->si_pid;
93 new.ssi_uid = kinfo->si_uid;
Davide Libenzifba2afa2007-05-10 22:23:13 -070094 break;
Eric W. Biedermancc731522017-07-16 22:36:59 -050095 case SIL_TIMER:
Eric W. Biederman5611f552018-04-24 20:39:16 -050096 new.ssi_tid = kinfo->si_tid;
97 new.ssi_overrun = kinfo->si_overrun;
98 new.ssi_ptr = (long) kinfo->si_ptr;
99 new.ssi_int = kinfo->si_int;
Davide Libenzifba2afa2007-05-10 22:23:13 -0700100 break;
Eric W. Biedermancc731522017-07-16 22:36:59 -0500101 case SIL_POLL:
Eric W. Biederman5611f552018-04-24 20:39:16 -0500102 new.ssi_band = kinfo->si_band;
103 new.ssi_fd = kinfo->si_fd;
Davide Libenzifba2afa2007-05-10 22:23:13 -0700104 break;
Eric W. Biederman31931c92018-04-24 20:59:47 -0500105 case SIL_FAULT_BNDERR:
106 case SIL_FAULT_PKUERR:
Eric W. Biedermanf4ac7302021-04-30 17:58:56 -0500107 case SIL_FAULT_PERF_EVENT:
Eric W. Biederman31931c92018-04-24 20:59:47 -0500108 /*
Eric W. Biederman922e3012021-05-03 12:52:43 -0500109 * Fall through to the SIL_FAULT case. SIL_FAULT_BNDERR,
Eric W. Biedermanf4ac7302021-04-30 17:58:56 -0500110 * SIL_FAULT_PKUERR, and SIL_FAULT_PERF_EVENT are only
Eric W. Biederman922e3012021-05-03 12:52:43 -0500111 * generated by faults that deliver them synchronously to
112 * userspace. In case someone injects one of these signals
113 * and signalfd catches it treat it as SIL_FAULT.
Eric W. Biederman31931c92018-04-24 20:59:47 -0500114 */
Eric W. Biedermancc731522017-07-16 22:36:59 -0500115 case SIL_FAULT:
Eric W. Biederman5611f552018-04-24 20:39:16 -0500116 new.ssi_addr = (long) kinfo->si_addr;
Eric W. Biederman9abcabe2021-04-30 17:29:36 -0500117 break;
118 case SIL_FAULT_TRAPNO:
119 new.ssi_addr = (long) kinfo->si_addr;
Eric W. Biederman5611f552018-04-24 20:39:16 -0500120 new.ssi_trapno = kinfo->si_trapno;
Eric W. Biederman31931c92018-04-24 20:59:47 -0500121 break;
122 case SIL_FAULT_MCEERR:
123 new.ssi_addr = (long) kinfo->si_addr;
Eric W. Biederman31931c92018-04-24 20:59:47 -0500124 new.ssi_addr_lsb = (short) kinfo->si_addr_lsb;
Davide Libenzifba2afa2007-05-10 22:23:13 -0700125 break;
Eric W. Biedermancc731522017-07-16 22:36:59 -0500126 case SIL_CHLD:
Eric W. Biederman5611f552018-04-24 20:39:16 -0500127 new.ssi_pid = kinfo->si_pid;
128 new.ssi_uid = kinfo->si_uid;
129 new.ssi_status = kinfo->si_status;
130 new.ssi_utime = kinfo->si_utime;
131 new.ssi_stime = kinfo->si_stime;
Davide Libenzifba2afa2007-05-10 22:23:13 -0700132 break;
Eric W. Biedermancc731522017-07-16 22:36:59 -0500133 case SIL_RT:
Davide Libenzi0859ab52008-04-10 21:29:29 -0700134 /*
135 * This case catches also the signals queued by sigqueue().
136 */
Eric W. Biederman5611f552018-04-24 20:39:16 -0500137 new.ssi_pid = kinfo->si_pid;
138 new.ssi_uid = kinfo->si_uid;
139 new.ssi_ptr = (long) kinfo->si_ptr;
140 new.ssi_int = kinfo->si_int;
Davide Libenzifba2afa2007-05-10 22:23:13 -0700141 break;
Eric W. Biederman76b7f672018-04-24 20:48:32 -0500142 case SIL_SYS:
143 new.ssi_call_addr = (long) kinfo->si_call_addr;
144 new.ssi_syscall = kinfo->si_syscall;
145 new.ssi_arch = kinfo->si_arch;
146 break;
Davide Libenzifba2afa2007-05-10 22:23:13 -0700147 }
148
Eric W. Biederman5611f552018-04-24 20:39:16 -0500149 if (copy_to_user(uinfo, &new, sizeof(struct signalfd_siginfo)))
150 return -EFAULT;
151
152 return sizeof(*uinfo);
Davide Libenzifba2afa2007-05-10 22:23:13 -0700153}
154
Eric W. Biedermanae7795b2018-09-25 11:27:20 +0200155static ssize_t signalfd_dequeue(struct signalfd_ctx *ctx, kernel_siginfo_t *info,
Davi Arnautb3762bf2007-05-23 13:58:04 -0700156 int nonblock)
157{
158 ssize_t ret;
Davi Arnautb3762bf2007-05-23 13:58:04 -0700159 DECLARE_WAITQUEUE(wait, current);
160
Davide Libenzib8fceee2007-09-20 12:40:16 -0700161 spin_lock_irq(&current->sighand->siglock);
162 ret = dequeue_signal(current, &ctx->sigmask, info);
Davi Arnautb3762bf2007-05-23 13:58:04 -0700163 switch (ret) {
164 case 0:
165 if (!nonblock)
166 break;
167 ret = -EAGAIN;
Gustavo A. R. Silvadf561f662020-08-23 17:36:59 -0500168 fallthrough;
Davi Arnautb3762bf2007-05-23 13:58:04 -0700169 default:
Davide Libenzib8fceee2007-09-20 12:40:16 -0700170 spin_unlock_irq(&current->sighand->siglock);
Davi Arnautb3762bf2007-05-23 13:58:04 -0700171 return ret;
172 }
173
Davide Libenzib8fceee2007-09-20 12:40:16 -0700174 add_wait_queue(&current->sighand->signalfd_wqh, &wait);
Davi Arnautb3762bf2007-05-23 13:58:04 -0700175 for (;;) {
176 set_current_state(TASK_INTERRUPTIBLE);
Davide Libenzib8fceee2007-09-20 12:40:16 -0700177 ret = dequeue_signal(current, &ctx->sigmask, info);
Davi Arnautb3762bf2007-05-23 13:58:04 -0700178 if (ret != 0)
179 break;
180 if (signal_pending(current)) {
181 ret = -ERESTARTSYS;
182 break;
183 }
Davide Libenzib8fceee2007-09-20 12:40:16 -0700184 spin_unlock_irq(&current->sighand->siglock);
Davi Arnautb3762bf2007-05-23 13:58:04 -0700185 schedule();
Davide Libenzib8fceee2007-09-20 12:40:16 -0700186 spin_lock_irq(&current->sighand->siglock);
Davi Arnautb3762bf2007-05-23 13:58:04 -0700187 }
Davide Libenzib8fceee2007-09-20 12:40:16 -0700188 spin_unlock_irq(&current->sighand->siglock);
Davi Arnautb3762bf2007-05-23 13:58:04 -0700189
Davide Libenzib8fceee2007-09-20 12:40:16 -0700190 remove_wait_queue(&current->sighand->signalfd_wqh, &wait);
Davi Arnautb3762bf2007-05-23 13:58:04 -0700191 __set_current_state(TASK_RUNNING);
192
193 return ret;
194}
195
Davide Libenzifba2afa2007-05-10 22:23:13 -0700196/*
Davide Libenzib8fceee2007-09-20 12:40:16 -0700197 * Returns a multiple of the size of a "struct signalfd_siginfo", or a negative
198 * error code. The "count" parameter must be at least the size of a
199 * "struct signalfd_siginfo".
Davide Libenzifba2afa2007-05-10 22:23:13 -0700200 */
201static ssize_t signalfd_read(struct file *file, char __user *buf, size_t count,
202 loff_t *ppos)
203{
204 struct signalfd_ctx *ctx = file->private_data;
Davi Arnautb3762bf2007-05-23 13:58:04 -0700205 struct signalfd_siginfo __user *siginfo;
206 int nonblock = file->f_flags & O_NONBLOCK;
207 ssize_t ret, total = 0;
Eric W. Biedermanae7795b2018-09-25 11:27:20 +0200208 kernel_siginfo_t info;
Davide Libenzifba2afa2007-05-10 22:23:13 -0700209
Davi Arnautb3762bf2007-05-23 13:58:04 -0700210 count /= sizeof(struct signalfd_siginfo);
211 if (!count)
Davide Libenzifba2afa2007-05-10 22:23:13 -0700212 return -EINVAL;
Davide Libenzifba2afa2007-05-10 22:23:13 -0700213
Davi Arnautb3762bf2007-05-23 13:58:04 -0700214 siginfo = (struct signalfd_siginfo __user *) buf;
Davi Arnautb3762bf2007-05-23 13:58:04 -0700215 do {
216 ret = signalfd_dequeue(ctx, &info, nonblock);
217 if (unlikely(ret <= 0))
218 break;
219 ret = signalfd_copyinfo(siginfo, &info);
220 if (ret < 0)
221 break;
222 siginfo++;
223 total += ret;
224 nonblock = 1;
225 } while (--count);
226
Davide Libenzib8fceee2007-09-20 12:40:16 -0700227 return total ? total: ret;
Davide Libenzifba2afa2007-05-10 22:23:13 -0700228}
229
Cyrill Gorcunov138d22b2012-12-17 16:05:02 -0800230#ifdef CONFIG_PROC_FS
Joe Perchesa3816ab2014-09-29 16:08:25 -0700231static void signalfd_show_fdinfo(struct seq_file *m, struct file *f)
Cyrill Gorcunov138d22b2012-12-17 16:05:02 -0800232{
233 struct signalfd_ctx *ctx = f->private_data;
234 sigset_t sigmask;
235
236 sigmask = ctx->sigmask;
237 signotset(&sigmask);
238 render_sigset_t(m, "sigmask:\t", &sigmask);
Cyrill Gorcunov138d22b2012-12-17 16:05:02 -0800239}
240#endif
241
Davide Libenzifba2afa2007-05-10 22:23:13 -0700242static const struct file_operations signalfd_fops = {
Cyrill Gorcunov138d22b2012-12-17 16:05:02 -0800243#ifdef CONFIG_PROC_FS
244 .show_fdinfo = signalfd_show_fdinfo,
245#endif
Davide Libenzifba2afa2007-05-10 22:23:13 -0700246 .release = signalfd_release,
247 .poll = signalfd_poll,
248 .read = signalfd_read,
Arnd Bergmann6038f372010-08-15 18:52:59 +0200249 .llseek = noop_llseek,
Davide Libenzifba2afa2007-05-10 22:23:13 -0700250};
251
Al Viro5ed01272018-05-27 08:35:50 -0400252static int do_signalfd4(int ufd, sigset_t *mask, int flags)
Davide Libenzifba2afa2007-05-10 22:23:13 -0700253{
Davide Libenzifba2afa2007-05-10 22:23:13 -0700254 struct signalfd_ctx *ctx;
Davide Libenzifba2afa2007-05-10 22:23:13 -0700255
Ulrich Dreppere38b36f2008-07-23 21:29:42 -0700256 /* Check the SFD_* constants for consistency. */
257 BUILD_BUG_ON(SFD_CLOEXEC != O_CLOEXEC);
258 BUILD_BUG_ON(SFD_NONBLOCK != O_NONBLOCK);
259
Ulrich Drepper5fb5e042008-07-23 21:29:37 -0700260 if (flags & ~(SFD_CLOEXEC | SFD_NONBLOCK))
Ulrich Drepper9deb27b2008-07-23 21:29:24 -0700261 return -EINVAL;
262
Al Viro5ed01272018-05-27 08:35:50 -0400263 sigdelsetmask(mask, sigmask(SIGKILL) | sigmask(SIGSTOP));
264 signotset(mask);
Davide Libenzifba2afa2007-05-10 22:23:13 -0700265
266 if (ufd == -1) {
267 ctx = kmalloc(sizeof(*ctx), GFP_KERNEL);
268 if (!ctx)
269 return -ENOMEM;
270
Al Viro5ed01272018-05-27 08:35:50 -0400271 ctx->sigmask = *mask;
Davide Libenzifba2afa2007-05-10 22:23:13 -0700272
273 /*
274 * When we call this, the initialization must be complete, since
275 * anon_inode_getfd() will install the fd.
276 */
Ulrich Drepper7d9dbca2008-07-23 21:29:22 -0700277 ufd = anon_inode_getfd("[signalfd]", &signalfd_fops, ctx,
Roland Dreier628ff7c2009-12-18 09:41:24 -0800278 O_RDWR | (flags & (O_CLOEXEC | O_NONBLOCK)));
Al Viro2030a422008-02-23 06:46:49 -0500279 if (ufd < 0)
280 kfree(ctx);
Davide Libenzifba2afa2007-05-10 22:23:13 -0700281 } else {
Al Viro2903ff02012-08-28 12:52:22 -0400282 struct fd f = fdget(ufd);
283 if (!f.file)
Davide Libenzifba2afa2007-05-10 22:23:13 -0700284 return -EBADF;
Al Viro2903ff02012-08-28 12:52:22 -0400285 ctx = f.file->private_data;
286 if (f.file->f_op != &signalfd_fops) {
287 fdput(f);
Davide Libenzifba2afa2007-05-10 22:23:13 -0700288 return -EINVAL;
289 }
Davide Libenzib8fceee2007-09-20 12:40:16 -0700290 spin_lock_irq(&current->sighand->siglock);
Al Viro5ed01272018-05-27 08:35:50 -0400291 ctx->sigmask = *mask;
Davide Libenzib8fceee2007-09-20 12:40:16 -0700292 spin_unlock_irq(&current->sighand->siglock);
293
294 wake_up(&current->sighand->signalfd_wqh);
Al Viro2903ff02012-08-28 12:52:22 -0400295 fdput(f);
Davide Libenzifba2afa2007-05-10 22:23:13 -0700296 }
297
298 return ufd;
Davide Libenzifba2afa2007-05-10 22:23:13 -0700299}
Ulrich Drepper9deb27b2008-07-23 21:29:24 -0700300
Dominik Brodowski52fb6db2018-03-11 11:34:36 +0100301SYSCALL_DEFINE4(signalfd4, int, ufd, sigset_t __user *, user_mask,
302 size_t, sizemask, int, flags)
303{
Al Viro5ed01272018-05-27 08:35:50 -0400304 sigset_t mask;
305
Helge Dellera089e3f2020-08-11 18:36:04 -0700306 if (sizemask != sizeof(sigset_t))
Al Viro5ed01272018-05-27 08:35:50 -0400307 return -EINVAL;
Helge Dellera089e3f2020-08-11 18:36:04 -0700308 if (copy_from_user(&mask, user_mask, sizeof(mask)))
309 return -EFAULT;
Al Viro5ed01272018-05-27 08:35:50 -0400310 return do_signalfd4(ufd, &mask, flags);
Dominik Brodowski52fb6db2018-03-11 11:34:36 +0100311}
312
Heiko Carstens836f92a2009-01-14 14:14:33 +0100313SYSCALL_DEFINE3(signalfd, int, ufd, sigset_t __user *, user_mask,
314 size_t, sizemask)
Ulrich Drepper9deb27b2008-07-23 21:29:24 -0700315{
Al Viro5ed01272018-05-27 08:35:50 -0400316 sigset_t mask;
317
Helge Dellera089e3f2020-08-11 18:36:04 -0700318 if (sizemask != sizeof(sigset_t))
Al Viro5ed01272018-05-27 08:35:50 -0400319 return -EINVAL;
Helge Dellera089e3f2020-08-11 18:36:04 -0700320 if (copy_from_user(&mask, user_mask, sizeof(mask)))
321 return -EFAULT;
Al Viro5ed01272018-05-27 08:35:50 -0400322 return do_signalfd4(ufd, &mask, 0);
Ulrich Drepper9deb27b2008-07-23 21:29:24 -0700323}
Al Viro7d197ed2013-02-24 01:41:39 -0500324
325#ifdef CONFIG_COMPAT
Dominik Brodowski570484b2018-03-20 19:36:46 +0100326static long do_compat_signalfd4(int ufd,
Al Viro5ed01272018-05-27 08:35:50 -0400327 const compat_sigset_t __user *user_mask,
Dominik Brodowski570484b2018-03-20 19:36:46 +0100328 compat_size_t sigsetsize, int flags)
Al Viro7d197ed2013-02-24 01:41:39 -0500329{
Al Viro5ed01272018-05-27 08:35:50 -0400330 sigset_t mask;
Al Viro7d197ed2013-02-24 01:41:39 -0500331
332 if (sigsetsize != sizeof(compat_sigset_t))
333 return -EINVAL;
Al Viro5ed01272018-05-27 08:35:50 -0400334 if (get_compat_sigset(&mask, user_mask))
Al Viro7d197ed2013-02-24 01:41:39 -0500335 return -EFAULT;
Al Viro5ed01272018-05-27 08:35:50 -0400336 return do_signalfd4(ufd, &mask, flags);
Al Viro7d197ed2013-02-24 01:41:39 -0500337}
338
Dominik Brodowski570484b2018-03-20 19:36:46 +0100339COMPAT_SYSCALL_DEFINE4(signalfd4, int, ufd,
Al Viro5ed01272018-05-27 08:35:50 -0400340 const compat_sigset_t __user *, user_mask,
Dominik Brodowski570484b2018-03-20 19:36:46 +0100341 compat_size_t, sigsetsize,
342 int, flags)
343{
Al Viro5ed01272018-05-27 08:35:50 -0400344 return do_compat_signalfd4(ufd, user_mask, sigsetsize, flags);
Dominik Brodowski570484b2018-03-20 19:36:46 +0100345}
346
Al Viro7d197ed2013-02-24 01:41:39 -0500347COMPAT_SYSCALL_DEFINE3(signalfd, int, ufd,
Al Viro5ed01272018-05-27 08:35:50 -0400348 const compat_sigset_t __user *, user_mask,
Al Viro7d197ed2013-02-24 01:41:39 -0500349 compat_size_t, sigsetsize)
350{
Al Viro5ed01272018-05-27 08:35:50 -0400351 return do_compat_signalfd4(ufd, user_mask, sigsetsize, 0);
Al Viro7d197ed2013-02-24 01:41:39 -0500352}
353#endif