blob: e20d1484c6633310a64f52af69035248e77390e4 [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{
Eric W. Biederman5768d892021-11-15 13:47:13 -0600158 enum pid_type type;
Davi Arnautb3762bf2007-05-23 13:58:04 -0700159 ssize_t ret;
Davi Arnautb3762bf2007-05-23 13:58:04 -0700160 DECLARE_WAITQUEUE(wait, current);
161
Davide Libenzib8fceee2007-09-20 12:40:16 -0700162 spin_lock_irq(&current->sighand->siglock);
Eric W. Biederman5768d892021-11-15 13:47:13 -0600163 ret = dequeue_signal(current, &ctx->sigmask, info, &type);
Davi Arnautb3762bf2007-05-23 13:58:04 -0700164 switch (ret) {
165 case 0:
166 if (!nonblock)
167 break;
168 ret = -EAGAIN;
Gustavo A. R. Silvadf561f662020-08-23 17:36:59 -0500169 fallthrough;
Davi Arnautb3762bf2007-05-23 13:58:04 -0700170 default:
Davide Libenzib8fceee2007-09-20 12:40:16 -0700171 spin_unlock_irq(&current->sighand->siglock);
Davi Arnautb3762bf2007-05-23 13:58:04 -0700172 return ret;
173 }
174
Davide Libenzib8fceee2007-09-20 12:40:16 -0700175 add_wait_queue(&current->sighand->signalfd_wqh, &wait);
Davi Arnautb3762bf2007-05-23 13:58:04 -0700176 for (;;) {
177 set_current_state(TASK_INTERRUPTIBLE);
Eric W. Biederman5768d892021-11-15 13:47:13 -0600178 ret = dequeue_signal(current, &ctx->sigmask, info, &type);
Davi Arnautb3762bf2007-05-23 13:58:04 -0700179 if (ret != 0)
180 break;
181 if (signal_pending(current)) {
182 ret = -ERESTARTSYS;
183 break;
184 }
Davide Libenzib8fceee2007-09-20 12:40:16 -0700185 spin_unlock_irq(&current->sighand->siglock);
Davi Arnautb3762bf2007-05-23 13:58:04 -0700186 schedule();
Davide Libenzib8fceee2007-09-20 12:40:16 -0700187 spin_lock_irq(&current->sighand->siglock);
Davi Arnautb3762bf2007-05-23 13:58:04 -0700188 }
Davide Libenzib8fceee2007-09-20 12:40:16 -0700189 spin_unlock_irq(&current->sighand->siglock);
Davi Arnautb3762bf2007-05-23 13:58:04 -0700190
Davide Libenzib8fceee2007-09-20 12:40:16 -0700191 remove_wait_queue(&current->sighand->signalfd_wqh, &wait);
Davi Arnautb3762bf2007-05-23 13:58:04 -0700192 __set_current_state(TASK_RUNNING);
193
194 return ret;
195}
196
Davide Libenzifba2afa2007-05-10 22:23:13 -0700197/*
Davide Libenzib8fceee2007-09-20 12:40:16 -0700198 * Returns a multiple of the size of a "struct signalfd_siginfo", or a negative
199 * error code. The "count" parameter must be at least the size of a
200 * "struct signalfd_siginfo".
Davide Libenzifba2afa2007-05-10 22:23:13 -0700201 */
202static ssize_t signalfd_read(struct file *file, char __user *buf, size_t count,
203 loff_t *ppos)
204{
205 struct signalfd_ctx *ctx = file->private_data;
Davi Arnautb3762bf2007-05-23 13:58:04 -0700206 struct signalfd_siginfo __user *siginfo;
207 int nonblock = file->f_flags & O_NONBLOCK;
208 ssize_t ret, total = 0;
Eric W. Biedermanae7795b2018-09-25 11:27:20 +0200209 kernel_siginfo_t info;
Davide Libenzifba2afa2007-05-10 22:23:13 -0700210
Davi Arnautb3762bf2007-05-23 13:58:04 -0700211 count /= sizeof(struct signalfd_siginfo);
212 if (!count)
Davide Libenzifba2afa2007-05-10 22:23:13 -0700213 return -EINVAL;
Davide Libenzifba2afa2007-05-10 22:23:13 -0700214
Davi Arnautb3762bf2007-05-23 13:58:04 -0700215 siginfo = (struct signalfd_siginfo __user *) buf;
Davi Arnautb3762bf2007-05-23 13:58:04 -0700216 do {
217 ret = signalfd_dequeue(ctx, &info, nonblock);
218 if (unlikely(ret <= 0))
219 break;
220 ret = signalfd_copyinfo(siginfo, &info);
221 if (ret < 0)
222 break;
223 siginfo++;
224 total += ret;
225 nonblock = 1;
226 } while (--count);
227
Davide Libenzib8fceee2007-09-20 12:40:16 -0700228 return total ? total: ret;
Davide Libenzifba2afa2007-05-10 22:23:13 -0700229}
230
Cyrill Gorcunov138d22b2012-12-17 16:05:02 -0800231#ifdef CONFIG_PROC_FS
Joe Perchesa3816ab2014-09-29 16:08:25 -0700232static void signalfd_show_fdinfo(struct seq_file *m, struct file *f)
Cyrill Gorcunov138d22b2012-12-17 16:05:02 -0800233{
234 struct signalfd_ctx *ctx = f->private_data;
235 sigset_t sigmask;
236
237 sigmask = ctx->sigmask;
238 signotset(&sigmask);
239 render_sigset_t(m, "sigmask:\t", &sigmask);
Cyrill Gorcunov138d22b2012-12-17 16:05:02 -0800240}
241#endif
242
Davide Libenzifba2afa2007-05-10 22:23:13 -0700243static const struct file_operations signalfd_fops = {
Cyrill Gorcunov138d22b2012-12-17 16:05:02 -0800244#ifdef CONFIG_PROC_FS
245 .show_fdinfo = signalfd_show_fdinfo,
246#endif
Davide Libenzifba2afa2007-05-10 22:23:13 -0700247 .release = signalfd_release,
248 .poll = signalfd_poll,
249 .read = signalfd_read,
Arnd Bergmann6038f372010-08-15 18:52:59 +0200250 .llseek = noop_llseek,
Davide Libenzifba2afa2007-05-10 22:23:13 -0700251};
252
Al Viro5ed01272018-05-27 08:35:50 -0400253static int do_signalfd4(int ufd, sigset_t *mask, int flags)
Davide Libenzifba2afa2007-05-10 22:23:13 -0700254{
Davide Libenzifba2afa2007-05-10 22:23:13 -0700255 struct signalfd_ctx *ctx;
Davide Libenzifba2afa2007-05-10 22:23:13 -0700256
Ulrich Dreppere38b36f2008-07-23 21:29:42 -0700257 /* Check the SFD_* constants for consistency. */
258 BUILD_BUG_ON(SFD_CLOEXEC != O_CLOEXEC);
259 BUILD_BUG_ON(SFD_NONBLOCK != O_NONBLOCK);
260
Ulrich Drepper5fb5e042008-07-23 21:29:37 -0700261 if (flags & ~(SFD_CLOEXEC | SFD_NONBLOCK))
Ulrich Drepper9deb27b2008-07-23 21:29:24 -0700262 return -EINVAL;
263
Al Viro5ed01272018-05-27 08:35:50 -0400264 sigdelsetmask(mask, sigmask(SIGKILL) | sigmask(SIGSTOP));
265 signotset(mask);
Davide Libenzifba2afa2007-05-10 22:23:13 -0700266
267 if (ufd == -1) {
268 ctx = kmalloc(sizeof(*ctx), GFP_KERNEL);
269 if (!ctx)
270 return -ENOMEM;
271
Al Viro5ed01272018-05-27 08:35:50 -0400272 ctx->sigmask = *mask;
Davide Libenzifba2afa2007-05-10 22:23:13 -0700273
274 /*
275 * When we call this, the initialization must be complete, since
276 * anon_inode_getfd() will install the fd.
277 */
Ulrich Drepper7d9dbca2008-07-23 21:29:22 -0700278 ufd = anon_inode_getfd("[signalfd]", &signalfd_fops, ctx,
Roland Dreier628ff7c2009-12-18 09:41:24 -0800279 O_RDWR | (flags & (O_CLOEXEC | O_NONBLOCK)));
Al Viro2030a422008-02-23 06:46:49 -0500280 if (ufd < 0)
281 kfree(ctx);
Davide Libenzifba2afa2007-05-10 22:23:13 -0700282 } else {
Al Viro2903ff02012-08-28 12:52:22 -0400283 struct fd f = fdget(ufd);
284 if (!f.file)
Davide Libenzifba2afa2007-05-10 22:23:13 -0700285 return -EBADF;
Al Viro2903ff02012-08-28 12:52:22 -0400286 ctx = f.file->private_data;
287 if (f.file->f_op != &signalfd_fops) {
288 fdput(f);
Davide Libenzifba2afa2007-05-10 22:23:13 -0700289 return -EINVAL;
290 }
Davide Libenzib8fceee2007-09-20 12:40:16 -0700291 spin_lock_irq(&current->sighand->siglock);
Al Viro5ed01272018-05-27 08:35:50 -0400292 ctx->sigmask = *mask;
Davide Libenzib8fceee2007-09-20 12:40:16 -0700293 spin_unlock_irq(&current->sighand->siglock);
294
295 wake_up(&current->sighand->signalfd_wqh);
Al Viro2903ff02012-08-28 12:52:22 -0400296 fdput(f);
Davide Libenzifba2afa2007-05-10 22:23:13 -0700297 }
298
299 return ufd;
Davide Libenzifba2afa2007-05-10 22:23:13 -0700300}
Ulrich Drepper9deb27b2008-07-23 21:29:24 -0700301
Dominik Brodowski52fb6db2018-03-11 11:34:36 +0100302SYSCALL_DEFINE4(signalfd4, int, ufd, sigset_t __user *, user_mask,
303 size_t, sizemask, int, flags)
304{
Al Viro5ed01272018-05-27 08:35:50 -0400305 sigset_t mask;
306
Helge Dellera089e3f2020-08-11 18:36:04 -0700307 if (sizemask != sizeof(sigset_t))
Al Viro5ed01272018-05-27 08:35:50 -0400308 return -EINVAL;
Helge Dellera089e3f2020-08-11 18:36:04 -0700309 if (copy_from_user(&mask, user_mask, sizeof(mask)))
310 return -EFAULT;
Al Viro5ed01272018-05-27 08:35:50 -0400311 return do_signalfd4(ufd, &mask, flags);
Dominik Brodowski52fb6db2018-03-11 11:34:36 +0100312}
313
Heiko Carstens836f92a2009-01-14 14:14:33 +0100314SYSCALL_DEFINE3(signalfd, int, ufd, sigset_t __user *, user_mask,
315 size_t, sizemask)
Ulrich Drepper9deb27b2008-07-23 21:29:24 -0700316{
Al Viro5ed01272018-05-27 08:35:50 -0400317 sigset_t mask;
318
Helge Dellera089e3f2020-08-11 18:36:04 -0700319 if (sizemask != sizeof(sigset_t))
Al Viro5ed01272018-05-27 08:35:50 -0400320 return -EINVAL;
Helge Dellera089e3f2020-08-11 18:36:04 -0700321 if (copy_from_user(&mask, user_mask, sizeof(mask)))
322 return -EFAULT;
Al Viro5ed01272018-05-27 08:35:50 -0400323 return do_signalfd4(ufd, &mask, 0);
Ulrich Drepper9deb27b2008-07-23 21:29:24 -0700324}
Al Viro7d197ed2013-02-24 01:41:39 -0500325
326#ifdef CONFIG_COMPAT
Dominik Brodowski570484b2018-03-20 19:36:46 +0100327static long do_compat_signalfd4(int ufd,
Al Viro5ed01272018-05-27 08:35:50 -0400328 const compat_sigset_t __user *user_mask,
Dominik Brodowski570484b2018-03-20 19:36:46 +0100329 compat_size_t sigsetsize, int flags)
Al Viro7d197ed2013-02-24 01:41:39 -0500330{
Al Viro5ed01272018-05-27 08:35:50 -0400331 sigset_t mask;
Al Viro7d197ed2013-02-24 01:41:39 -0500332
333 if (sigsetsize != sizeof(compat_sigset_t))
334 return -EINVAL;
Al Viro5ed01272018-05-27 08:35:50 -0400335 if (get_compat_sigset(&mask, user_mask))
Al Viro7d197ed2013-02-24 01:41:39 -0500336 return -EFAULT;
Al Viro5ed01272018-05-27 08:35:50 -0400337 return do_signalfd4(ufd, &mask, flags);
Al Viro7d197ed2013-02-24 01:41:39 -0500338}
339
Dominik Brodowski570484b2018-03-20 19:36:46 +0100340COMPAT_SYSCALL_DEFINE4(signalfd4, int, ufd,
Al Viro5ed01272018-05-27 08:35:50 -0400341 const compat_sigset_t __user *, user_mask,
Dominik Brodowski570484b2018-03-20 19:36:46 +0100342 compat_size_t, sigsetsize,
343 int, flags)
344{
Al Viro5ed01272018-05-27 08:35:50 -0400345 return do_compat_signalfd4(ufd, user_mask, sigsetsize, flags);
Dominik Brodowski570484b2018-03-20 19:36:46 +0100346}
347
Al Viro7d197ed2013-02-24 01:41:39 -0500348COMPAT_SYSCALL_DEFINE3(signalfd, int, ufd,
Al Viro5ed01272018-05-27 08:35:50 -0400349 const compat_sigset_t __user *, user_mask,
Al Viro7d197ed2013-02-24 01:41:39 -0500350 compat_size_t, sigsetsize)
351{
Al Viro5ed01272018-05-27 08:35:50 -0400352 return do_compat_signalfd4(ufd, user_mask, sigsetsize, 0);
Al Viro7d197ed2013-02-24 01:41:39 -0500353}
354#endif