staging: rtl8192u: Replace mdelay with usleep_range in dm_TXPowerTrackingCallback_TSSI
[linux-2.6/btrfs-unstable.git] / fs / signalfd.c
blobd2187a813376cab46f63c11bb1e1eb572bf07775
1 // SPDX-License-Identifier: GPL-2.0
2 /*
3 * fs/signalfd.c
5 * Copyright (C) 2003 Linus Torvalds
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.
15 * Sat May 19, 2007: Davi E. M. Arnaut <davi@haxent.com.br>
16 * Retrieve multiple signals with one read() call
17 * Sun Jul 15, 2007: Davide Libenzi <davidel@xmailserver.org>
18 * Attach to the sighand only during read() and poll().
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>
26 #include <linux/slab.h>
27 #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>
32 #include <linux/syscalls.h>
33 #include <linux/proc_fs.h>
34 #include <linux/compat.h>
36 void signalfd_cleanup(struct sighand_struct *sighand)
38 wait_queue_head_t *wqh = &sighand->signalfd_wqh;
40 * The lockless check can race with remove_wait_queue() in progress,
41 * but in this case its caller should run under rcu_read_lock() and
42 * sighand_cachep is SLAB_TYPESAFE_BY_RCU, we can safely return.
44 if (likely(!waitqueue_active(wqh)))
45 return;
47 /* wait_queue_entry_t->func(POLLFREE) should do remove_wait_queue() */
48 wake_up_poll(wqh, EPOLLHUP | POLLFREE);
51 struct signalfd_ctx {
52 sigset_t sigmask;
55 static int signalfd_release(struct inode *inode, struct file *file)
57 kfree(file->private_data);
58 return 0;
61 static __poll_t signalfd_poll(struct file *file, poll_table *wait)
63 struct signalfd_ctx *ctx = file->private_data;
64 __poll_t events = 0;
66 poll_wait(file, &current->sighand->signalfd_wqh, wait);
68 spin_lock_irq(&current->sighand->siglock);
69 if (next_signal(&current->pending, &ctx->sigmask) ||
70 next_signal(&current->signal->shared_pending,
71 &ctx->sigmask))
72 events |= EPOLLIN;
73 spin_unlock_irq(&current->sighand->siglock);
75 return events;
79 * Copied from copy_siginfo_to_user() in kernel/signal.c
81 static int signalfd_copyinfo(struct signalfd_siginfo __user *uinfo,
82 siginfo_t const *kinfo)
84 long err;
86 BUILD_BUG_ON(sizeof(struct signalfd_siginfo) != 128);
89 * Unused members should be zero ...
91 err = __clear_user(uinfo, sizeof(*uinfo));
94 * If you change siginfo_t structure, please be sure
95 * this code is fixed accordingly.
97 err |= __put_user(kinfo->si_signo, &uinfo->ssi_signo);
98 err |= __put_user(kinfo->si_errno, &uinfo->ssi_errno);
99 err |= __put_user(kinfo->si_code, &uinfo->ssi_code);
100 switch (siginfo_layout(kinfo->si_signo, kinfo->si_code)) {
101 case SIL_KILL:
102 err |= __put_user(kinfo->si_pid, &uinfo->ssi_pid);
103 err |= __put_user(kinfo->si_uid, &uinfo->ssi_uid);
104 break;
105 case SIL_TIMER:
106 err |= __put_user(kinfo->si_tid, &uinfo->ssi_tid);
107 err |= __put_user(kinfo->si_overrun, &uinfo->ssi_overrun);
108 err |= __put_user((long) kinfo->si_ptr, &uinfo->ssi_ptr);
109 err |= __put_user(kinfo->si_int, &uinfo->ssi_int);
110 break;
111 case SIL_POLL:
112 err |= __put_user(kinfo->si_band, &uinfo->ssi_band);
113 err |= __put_user(kinfo->si_fd, &uinfo->ssi_fd);
114 break;
115 case SIL_FAULT:
116 err |= __put_user((long) kinfo->si_addr, &uinfo->ssi_addr);
117 #ifdef __ARCH_SI_TRAPNO
118 err |= __put_user(kinfo->si_trapno, &uinfo->ssi_trapno);
119 #endif
120 #ifdef BUS_MCEERR_AO
122 * Other callers might not initialize the si_lsb field,
123 * so check explicitly for the right codes here.
125 if (kinfo->si_signo == SIGBUS &&
126 kinfo->si_code == BUS_MCEERR_AO)
127 err |= __put_user((short) kinfo->si_addr_lsb,
128 &uinfo->ssi_addr_lsb);
129 #endif
130 #ifdef BUS_MCEERR_AR
132 * Other callers might not initialize the si_lsb field,
133 * so check explicitly for the right codes here.
135 if (kinfo->si_signo == SIGBUS &&
136 kinfo->si_code == BUS_MCEERR_AR)
137 err |= __put_user((short) kinfo->si_addr_lsb,
138 &uinfo->ssi_addr_lsb);
139 #endif
140 break;
141 case SIL_CHLD:
142 err |= __put_user(kinfo->si_pid, &uinfo->ssi_pid);
143 err |= __put_user(kinfo->si_uid, &uinfo->ssi_uid);
144 err |= __put_user(kinfo->si_status, &uinfo->ssi_status);
145 err |= __put_user(kinfo->si_utime, &uinfo->ssi_utime);
146 err |= __put_user(kinfo->si_stime, &uinfo->ssi_stime);
147 break;
148 case SIL_RT:
149 default:
151 * This case catches also the signals queued by sigqueue().
153 err |= __put_user(kinfo->si_pid, &uinfo->ssi_pid);
154 err |= __put_user(kinfo->si_uid, &uinfo->ssi_uid);
155 err |= __put_user((long) kinfo->si_ptr, &uinfo->ssi_ptr);
156 err |= __put_user(kinfo->si_int, &uinfo->ssi_int);
157 break;
160 return err ? -EFAULT: sizeof(*uinfo);
163 static ssize_t signalfd_dequeue(struct signalfd_ctx *ctx, siginfo_t *info,
164 int nonblock)
166 ssize_t ret;
167 DECLARE_WAITQUEUE(wait, current);
169 spin_lock_irq(&current->sighand->siglock);
170 ret = dequeue_signal(current, &ctx->sigmask, info);
171 switch (ret) {
172 case 0:
173 if (!nonblock)
174 break;
175 ret = -EAGAIN;
176 default:
177 spin_unlock_irq(&current->sighand->siglock);
178 return ret;
181 add_wait_queue(&current->sighand->signalfd_wqh, &wait);
182 for (;;) {
183 set_current_state(TASK_INTERRUPTIBLE);
184 ret = dequeue_signal(current, &ctx->sigmask, info);
185 if (ret != 0)
186 break;
187 if (signal_pending(current)) {
188 ret = -ERESTARTSYS;
189 break;
191 spin_unlock_irq(&current->sighand->siglock);
192 schedule();
193 spin_lock_irq(&current->sighand->siglock);
195 spin_unlock_irq(&current->sighand->siglock);
197 remove_wait_queue(&current->sighand->signalfd_wqh, &wait);
198 __set_current_state(TASK_RUNNING);
200 return ret;
204 * Returns a multiple of the size of a "struct signalfd_siginfo", or a negative
205 * error code. The "count" parameter must be at least the size of a
206 * "struct signalfd_siginfo".
208 static ssize_t signalfd_read(struct file *file, char __user *buf, size_t count,
209 loff_t *ppos)
211 struct signalfd_ctx *ctx = file->private_data;
212 struct signalfd_siginfo __user *siginfo;
213 int nonblock = file->f_flags & O_NONBLOCK;
214 ssize_t ret, total = 0;
215 siginfo_t info;
217 count /= sizeof(struct signalfd_siginfo);
218 if (!count)
219 return -EINVAL;
221 siginfo = (struct signalfd_siginfo __user *) buf;
222 do {
223 ret = signalfd_dequeue(ctx, &info, nonblock);
224 if (unlikely(ret <= 0))
225 break;
226 ret = signalfd_copyinfo(siginfo, &info);
227 if (ret < 0)
228 break;
229 siginfo++;
230 total += ret;
231 nonblock = 1;
232 } while (--count);
234 return total ? total: ret;
237 #ifdef CONFIG_PROC_FS
238 static void signalfd_show_fdinfo(struct seq_file *m, struct file *f)
240 struct signalfd_ctx *ctx = f->private_data;
241 sigset_t sigmask;
243 sigmask = ctx->sigmask;
244 signotset(&sigmask);
245 render_sigset_t(m, "sigmask:\t", &sigmask);
247 #endif
249 static const struct file_operations signalfd_fops = {
250 #ifdef CONFIG_PROC_FS
251 .show_fdinfo = signalfd_show_fdinfo,
252 #endif
253 .release = signalfd_release,
254 .poll = signalfd_poll,
255 .read = signalfd_read,
256 .llseek = noop_llseek,
259 static int do_signalfd4(int ufd, sigset_t __user *user_mask, size_t sizemask,
260 int flags)
262 sigset_t sigmask;
263 struct signalfd_ctx *ctx;
265 /* Check the SFD_* constants for consistency. */
266 BUILD_BUG_ON(SFD_CLOEXEC != O_CLOEXEC);
267 BUILD_BUG_ON(SFD_NONBLOCK != O_NONBLOCK);
269 if (flags & ~(SFD_CLOEXEC | SFD_NONBLOCK))
270 return -EINVAL;
272 if (sizemask != sizeof(sigset_t) ||
273 copy_from_user(&sigmask, user_mask, sizeof(sigmask)))
274 return -EINVAL;
275 sigdelsetmask(&sigmask, sigmask(SIGKILL) | sigmask(SIGSTOP));
276 signotset(&sigmask);
278 if (ufd == -1) {
279 ctx = kmalloc(sizeof(*ctx), GFP_KERNEL);
280 if (!ctx)
281 return -ENOMEM;
283 ctx->sigmask = sigmask;
286 * When we call this, the initialization must be complete, since
287 * anon_inode_getfd() will install the fd.
289 ufd = anon_inode_getfd("[signalfd]", &signalfd_fops, ctx,
290 O_RDWR | (flags & (O_CLOEXEC | O_NONBLOCK)));
291 if (ufd < 0)
292 kfree(ctx);
293 } else {
294 struct fd f = fdget(ufd);
295 if (!f.file)
296 return -EBADF;
297 ctx = f.file->private_data;
298 if (f.file->f_op != &signalfd_fops) {
299 fdput(f);
300 return -EINVAL;
302 spin_lock_irq(&current->sighand->siglock);
303 ctx->sigmask = sigmask;
304 spin_unlock_irq(&current->sighand->siglock);
306 wake_up(&current->sighand->signalfd_wqh);
307 fdput(f);
310 return ufd;
313 SYSCALL_DEFINE4(signalfd4, int, ufd, sigset_t __user *, user_mask,
314 size_t, sizemask, int, flags)
316 return do_signalfd4(ufd, user_mask, sizemask, flags);
319 SYSCALL_DEFINE3(signalfd, int, ufd, sigset_t __user *, user_mask,
320 size_t, sizemask)
322 return do_signalfd4(ufd, user_mask, sizemask, 0);
325 #ifdef CONFIG_COMPAT
326 static long do_compat_signalfd4(int ufd,
327 const compat_sigset_t __user *sigmask,
328 compat_size_t sigsetsize, int flags)
330 sigset_t tmp;
331 sigset_t __user *ksigmask;
333 if (sigsetsize != sizeof(compat_sigset_t))
334 return -EINVAL;
335 if (get_compat_sigset(&tmp, sigmask))
336 return -EFAULT;
337 ksigmask = compat_alloc_user_space(sizeof(sigset_t));
338 if (copy_to_user(ksigmask, &tmp, sizeof(sigset_t)))
339 return -EFAULT;
341 return do_signalfd4(ufd, ksigmask, sizeof(sigset_t), flags);
344 COMPAT_SYSCALL_DEFINE4(signalfd4, int, ufd,
345 const compat_sigset_t __user *, sigmask,
346 compat_size_t, sigsetsize,
347 int, flags)
349 return do_compat_signalfd4(ufd, sigmask, sigsetsize, flags);
352 COMPAT_SYSCALL_DEFINE3(signalfd, int, ufd,
353 const compat_sigset_t __user *,sigmask,
354 compat_size_t, sigsetsize)
356 return do_compat_signalfd4(ufd, sigmask, sigsetsize, 0);
358 #endif