]>
Commit | Line | Data |
---|---|---|
fba2afaa DL |
1 | /* |
2 | * fs/signalfd.c | |
3 | * | |
4 | * Copyright (C) 2003 Linus Torvalds | |
5 | * | |
6 | * Mon Mar 5, 2007: Davide Libenzi <[email protected]> | |
7 | * Changed ->read() to return a siginfo strcture instead of signal number. | |
8 | * Fixed locking in ->poll(). | |
9 | * Added sighand-detach notification. | |
10 | * Added fd re-use in sys_signalfd() syscall. | |
11 | * Now using anonymous inode source. | |
12 | * Thanks to Oleg Nesterov for useful code review and suggestions. | |
13 | * More comments and suggestions from Arnd Bergmann. | |
b8fceee1 | 14 | * Sat May 19, 2007: Davi E. M. Arnaut <[email protected]> |
b3762bfc | 15 | * Retrieve multiple signals with one read() call |
b8fceee1 DL |
16 | * Sun Jul 15, 2007: Davide Libenzi <[email protected]> |
17 | * Attach to the sighand only during read() and poll(). | |
fba2afaa DL |
18 | */ |
19 | ||
20 | #include <linux/file.h> | |
21 | #include <linux/poll.h> | |
22 | #include <linux/init.h> | |
23 | #include <linux/fs.h> | |
24 | #include <linux/sched.h> | |
5a0e3ad6 | 25 | #include <linux/slab.h> |
fba2afaa DL |
26 | #include <linux/kernel.h> |
27 | #include <linux/signal.h> | |
28 | #include <linux/list.h> | |
29 | #include <linux/anon_inodes.h> | |
30 | #include <linux/signalfd.h> | |
7ec37dfd | 31 | #include <linux/syscalls.h> |
fba2afaa DL |
32 | |
33 | struct signalfd_ctx { | |
fba2afaa | 34 | sigset_t sigmask; |
fba2afaa DL |
35 | }; |
36 | ||
fba2afaa DL |
37 | static int signalfd_release(struct inode *inode, struct file *file) |
38 | { | |
b8fceee1 | 39 | kfree(file->private_data); |
fba2afaa DL |
40 | return 0; |
41 | } | |
42 | ||
43 | static unsigned int signalfd_poll(struct file *file, poll_table *wait) | |
44 | { | |
45 | struct signalfd_ctx *ctx = file->private_data; | |
46 | unsigned int events = 0; | |
fba2afaa | 47 | |
b8fceee1 | 48 | poll_wait(file, ¤t->sighand->signalfd_wqh, wait); |
fba2afaa | 49 | |
b8fceee1 DL |
50 | spin_lock_irq(¤t->sighand->siglock); |
51 | if (next_signal(¤t->pending, &ctx->sigmask) || | |
52 | next_signal(¤t->signal->shared_pending, | |
53 | &ctx->sigmask)) | |
fba2afaa | 54 | events |= POLLIN; |
b8fceee1 | 55 | spin_unlock_irq(¤t->sighand->siglock); |
fba2afaa DL |
56 | |
57 | return events; | |
58 | } | |
59 | ||
60 | /* | |
61 | * Copied from copy_siginfo_to_user() in kernel/signal.c | |
62 | */ | |
63 | static int signalfd_copyinfo(struct signalfd_siginfo __user *uinfo, | |
64 | siginfo_t const *kinfo) | |
65 | { | |
66 | long err; | |
67 | ||
68 | BUILD_BUG_ON(sizeof(struct signalfd_siginfo) != 128); | |
69 | ||
70 | /* | |
14e4a0f2 | 71 | * Unused members should be zero ... |
fba2afaa DL |
72 | */ |
73 | err = __clear_user(uinfo, sizeof(*uinfo)); | |
74 | ||
75 | /* | |
76 | * If you change siginfo_t structure, please be sure | |
77 | * this code is fixed accordingly. | |
78 | */ | |
96358de6 DL |
79 | err |= __put_user(kinfo->si_signo, &uinfo->ssi_signo); |
80 | err |= __put_user(kinfo->si_errno, &uinfo->ssi_errno); | |
81 | err |= __put_user((short) kinfo->si_code, &uinfo->ssi_code); | |
fba2afaa DL |
82 | switch (kinfo->si_code & __SI_MASK) { |
83 | case __SI_KILL: | |
96358de6 DL |
84 | err |= __put_user(kinfo->si_pid, &uinfo->ssi_pid); |
85 | err |= __put_user(kinfo->si_uid, &uinfo->ssi_uid); | |
fba2afaa DL |
86 | break; |
87 | case __SI_TIMER: | |
96358de6 DL |
88 | err |= __put_user(kinfo->si_tid, &uinfo->ssi_tid); |
89 | err |= __put_user(kinfo->si_overrun, &uinfo->ssi_overrun); | |
90 | err |= __put_user((long) kinfo->si_ptr, &uinfo->ssi_ptr); | |
fba2afaa DL |
91 | break; |
92 | case __SI_POLL: | |
96358de6 DL |
93 | err |= __put_user(kinfo->si_band, &uinfo->ssi_band); |
94 | err |= __put_user(kinfo->si_fd, &uinfo->ssi_fd); | |
fba2afaa DL |
95 | break; |
96 | case __SI_FAULT: | |
96358de6 | 97 | err |= __put_user((long) kinfo->si_addr, &uinfo->ssi_addr); |
fba2afaa | 98 | #ifdef __ARCH_SI_TRAPNO |
96358de6 | 99 | err |= __put_user(kinfo->si_trapno, &uinfo->ssi_trapno); |
fba2afaa DL |
100 | #endif |
101 | break; | |
102 | case __SI_CHLD: | |
96358de6 DL |
103 | err |= __put_user(kinfo->si_pid, &uinfo->ssi_pid); |
104 | err |= __put_user(kinfo->si_uid, &uinfo->ssi_uid); | |
105 | err |= __put_user(kinfo->si_status, &uinfo->ssi_status); | |
106 | err |= __put_user(kinfo->si_utime, &uinfo->ssi_utime); | |
107 | err |= __put_user(kinfo->si_stime, &uinfo->ssi_stime); | |
fba2afaa DL |
108 | break; |
109 | case __SI_RT: /* This is not generated by the kernel as of now. */ | |
110 | case __SI_MESGQ: /* But this is */ | |
96358de6 DL |
111 | err |= __put_user(kinfo->si_pid, &uinfo->ssi_pid); |
112 | err |= __put_user(kinfo->si_uid, &uinfo->ssi_uid); | |
113 | err |= __put_user((long) kinfo->si_ptr, &uinfo->ssi_ptr); | |
fba2afaa | 114 | break; |
0859ab59 DL |
115 | default: |
116 | /* | |
117 | * This case catches also the signals queued by sigqueue(). | |
118 | */ | |
96358de6 DL |
119 | err |= __put_user(kinfo->si_pid, &uinfo->ssi_pid); |
120 | err |= __put_user(kinfo->si_uid, &uinfo->ssi_uid); | |
0859ab59 DL |
121 | err |= __put_user((long) kinfo->si_ptr, &uinfo->ssi_ptr); |
122 | err |= __put_user(kinfo->si_int, &uinfo->ssi_int); | |
fba2afaa DL |
123 | break; |
124 | } | |
125 | ||
126 | return err ? -EFAULT: sizeof(*uinfo); | |
127 | } | |
128 | ||
b3762bfc DA |
129 | static ssize_t signalfd_dequeue(struct signalfd_ctx *ctx, siginfo_t *info, |
130 | int nonblock) | |
131 | { | |
132 | ssize_t ret; | |
b3762bfc DA |
133 | DECLARE_WAITQUEUE(wait, current); |
134 | ||
b8fceee1 DL |
135 | spin_lock_irq(¤t->sighand->siglock); |
136 | ret = dequeue_signal(current, &ctx->sigmask, info); | |
b3762bfc DA |
137 | switch (ret) { |
138 | case 0: | |
139 | if (!nonblock) | |
140 | break; | |
141 | ret = -EAGAIN; | |
142 | default: | |
b8fceee1 | 143 | spin_unlock_irq(¤t->sighand->siglock); |
b3762bfc DA |
144 | return ret; |
145 | } | |
146 | ||
b8fceee1 | 147 | add_wait_queue(¤t->sighand->signalfd_wqh, &wait); |
b3762bfc DA |
148 | for (;;) { |
149 | set_current_state(TASK_INTERRUPTIBLE); | |
b8fceee1 | 150 | ret = dequeue_signal(current, &ctx->sigmask, info); |
b3762bfc DA |
151 | if (ret != 0) |
152 | break; | |
153 | if (signal_pending(current)) { | |
154 | ret = -ERESTARTSYS; | |
155 | break; | |
156 | } | |
b8fceee1 | 157 | spin_unlock_irq(¤t->sighand->siglock); |
b3762bfc | 158 | schedule(); |
b8fceee1 | 159 | spin_lock_irq(¤t->sighand->siglock); |
b3762bfc | 160 | } |
b8fceee1 | 161 | spin_unlock_irq(¤t->sighand->siglock); |
b3762bfc | 162 | |
b8fceee1 | 163 | remove_wait_queue(¤t->sighand->signalfd_wqh, &wait); |
b3762bfc DA |
164 | __set_current_state(TASK_RUNNING); |
165 | ||
166 | return ret; | |
167 | } | |
168 | ||
fba2afaa | 169 | /* |
b8fceee1 DL |
170 | * Returns a multiple of the size of a "struct signalfd_siginfo", or a negative |
171 | * error code. The "count" parameter must be at least the size of a | |
172 | * "struct signalfd_siginfo". | |
fba2afaa DL |
173 | */ |
174 | static ssize_t signalfd_read(struct file *file, char __user *buf, size_t count, | |
175 | loff_t *ppos) | |
176 | { | |
177 | struct signalfd_ctx *ctx = file->private_data; | |
b3762bfc DA |
178 | struct signalfd_siginfo __user *siginfo; |
179 | int nonblock = file->f_flags & O_NONBLOCK; | |
180 | ssize_t ret, total = 0; | |
fba2afaa | 181 | siginfo_t info; |
fba2afaa | 182 | |
b3762bfc DA |
183 | count /= sizeof(struct signalfd_siginfo); |
184 | if (!count) | |
fba2afaa | 185 | return -EINVAL; |
fba2afaa | 186 | |
b3762bfc | 187 | siginfo = (struct signalfd_siginfo __user *) buf; |
b3762bfc DA |
188 | do { |
189 | ret = signalfd_dequeue(ctx, &info, nonblock); | |
190 | if (unlikely(ret <= 0)) | |
191 | break; | |
192 | ret = signalfd_copyinfo(siginfo, &info); | |
193 | if (ret < 0) | |
194 | break; | |
195 | siginfo++; | |
196 | total += ret; | |
197 | nonblock = 1; | |
198 | } while (--count); | |
199 | ||
b8fceee1 | 200 | return total ? total: ret; |
fba2afaa DL |
201 | } |
202 | ||
203 | static const struct file_operations signalfd_fops = { | |
204 | .release = signalfd_release, | |
205 | .poll = signalfd_poll, | |
206 | .read = signalfd_read, | |
207 | }; | |
208 | ||
836f92ad HC |
209 | SYSCALL_DEFINE4(signalfd4, int, ufd, sigset_t __user *, user_mask, |
210 | size_t, sizemask, int, flags) | |
fba2afaa | 211 | { |
fba2afaa DL |
212 | sigset_t sigmask; |
213 | struct signalfd_ctx *ctx; | |
fba2afaa | 214 | |
e38b36f3 UD |
215 | /* Check the SFD_* constants for consistency. */ |
216 | BUILD_BUG_ON(SFD_CLOEXEC != O_CLOEXEC); | |
217 | BUILD_BUG_ON(SFD_NONBLOCK != O_NONBLOCK); | |
218 | ||
5fb5e049 | 219 | if (flags & ~(SFD_CLOEXEC | SFD_NONBLOCK)) |
9deb27ba UD |
220 | return -EINVAL; |
221 | ||
fba2afaa DL |
222 | if (sizemask != sizeof(sigset_t) || |
223 | copy_from_user(&sigmask, user_mask, sizeof(sigmask))) | |
f50cadaa | 224 | return -EINVAL; |
fba2afaa DL |
225 | sigdelsetmask(&sigmask, sigmask(SIGKILL) | sigmask(SIGSTOP)); |
226 | signotset(&sigmask); | |
227 | ||
228 | if (ufd == -1) { | |
229 | ctx = kmalloc(sizeof(*ctx), GFP_KERNEL); | |
230 | if (!ctx) | |
231 | return -ENOMEM; | |
232 | ||
fba2afaa | 233 | ctx->sigmask = sigmask; |
fba2afaa DL |
234 | |
235 | /* | |
236 | * When we call this, the initialization must be complete, since | |
237 | * anon_inode_getfd() will install the fd. | |
238 | */ | |
7d9dbca3 | 239 | ufd = anon_inode_getfd("[signalfd]", &signalfd_fops, ctx, |
628ff7c1 | 240 | O_RDWR | (flags & (O_CLOEXEC | O_NONBLOCK))); |
2030a42c AV |
241 | if (ufd < 0) |
242 | kfree(ctx); | |
fba2afaa | 243 | } else { |
2030a42c | 244 | struct file *file = fget(ufd); |
fba2afaa DL |
245 | if (!file) |
246 | return -EBADF; | |
247 | ctx = file->private_data; | |
248 | if (file->f_op != &signalfd_fops) { | |
249 | fput(file); | |
250 | return -EINVAL; | |
251 | } | |
b8fceee1 DL |
252 | spin_lock_irq(¤t->sighand->siglock); |
253 | ctx->sigmask = sigmask; | |
254 | spin_unlock_irq(¤t->sighand->siglock); | |
255 | ||
256 | wake_up(¤t->sighand->signalfd_wqh); | |
fba2afaa DL |
257 | fput(file); |
258 | } | |
259 | ||
260 | return ufd; | |
fba2afaa | 261 | } |
9deb27ba | 262 | |
836f92ad HC |
263 | SYSCALL_DEFINE3(signalfd, int, ufd, sigset_t __user *, user_mask, |
264 | size_t, sizemask) | |
9deb27ba UD |
265 | { |
266 | return sys_signalfd4(ufd, user_mask, sizemask, 0); | |
267 | } |