blob: f6dceb56793fbe3f20b2a8313f9196bcb9e56ac6 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * This file contains the procedures for the handling of select and poll
3 *
4 * Created for Linux based loosely upon Mathius Lattner's minix
5 * patches by Peter MacDonald. Heavily edited by Linus.
6 *
7 * 4 February 1994
8 * COFF/ELF binary emulation. If the process has the STICKY_TIMEOUTS
9 * flag set in its personality we do *not* modify the given timeout
10 * parameter to reflect time remaining.
11 *
12 * 24 January 2000
13 * Changed sys_poll()/do_poll() to use PAGE_SIZE chunk-based allocation
14 * of fds to overcome nfds < 16390 descriptors limit (Tigran Aivazian).
15 */
16
Milind Arun Choudhary022a1692007-05-08 00:29:02 -070017#include <linux/kernel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include <linux/syscalls.h>
19#include <linux/module.h>
20#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#include <linux/poll.h>
22#include <linux/personality.h> /* for STICKY_TIMEOUTS */
23#include <linux/file.h>
Al Viro9f3acc32008-04-24 07:44:08 -040024#include <linux/fdtable.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include <linux/fs.h>
Dipankar Sarmab8359962005-09-09 13:04:14 -070026#include <linux/rcupdate.h>
Arjan van de Ven8ff3e8e2008-08-31 08:26:40 -070027#include <linux/hrtimer.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070028
29#include <asm/uaccess.h>
30
Linus Torvalds1da177e2005-04-16 15:20:36 -070031struct poll_table_page {
32 struct poll_table_page * next;
33 struct poll_table_entry * entry;
34 struct poll_table_entry entries[0];
35};
36
37#define POLL_TABLE_FULL(table) \
38 ((unsigned long)((table)->entry+1) > PAGE_SIZE + (unsigned long)(table))
39
40/*
41 * Ok, Peter made a complicated, but straightforward multiple_wait() function.
42 * I have rewritten this, taking some shortcuts: This code may not be easy to
43 * follow, but it should be free of race-conditions, and it's practical. If you
44 * understand what I'm doing here, then you understand how the linux
45 * sleep/wakeup mechanism works.
46 *
47 * Two very simple procedures, poll_wait() and poll_freewait() make all the
48 * work. poll_wait() is an inline-function defined in <linux/poll.h>,
49 * as all select/poll functions have to call it to add an entry to the
50 * poll table.
51 */
Adrian Bunk75c96f82005-05-05 16:16:09 -070052static void __pollwait(struct file *filp, wait_queue_head_t *wait_address,
53 poll_table *p);
Linus Torvalds1da177e2005-04-16 15:20:36 -070054
55void poll_initwait(struct poll_wqueues *pwq)
56{
57 init_poll_funcptr(&pwq->pt, __pollwait);
58 pwq->error = 0;
59 pwq->table = NULL;
Andi Kleen70674f92006-03-28 01:56:33 -080060 pwq->inline_index = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070061}
62
63EXPORT_SYMBOL(poll_initwait);
64
Andi Kleen70674f92006-03-28 01:56:33 -080065static void free_poll_entry(struct poll_table_entry *entry)
66{
WANG Congccf67802007-05-09 07:10:02 +020067 remove_wait_queue(entry->wait_address, &entry->wait);
Andi Kleen70674f92006-03-28 01:56:33 -080068 fput(entry->filp);
69}
70
Linus Torvalds1da177e2005-04-16 15:20:36 -070071void poll_freewait(struct poll_wqueues *pwq)
72{
73 struct poll_table_page * p = pwq->table;
Andi Kleen70674f92006-03-28 01:56:33 -080074 int i;
75 for (i = 0; i < pwq->inline_index; i++)
76 free_poll_entry(pwq->inline_entries + i);
Linus Torvalds1da177e2005-04-16 15:20:36 -070077 while (p) {
78 struct poll_table_entry * entry;
79 struct poll_table_page *old;
80
81 entry = p->entry;
82 do {
83 entry--;
Andi Kleen70674f92006-03-28 01:56:33 -080084 free_poll_entry(entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -070085 } while (entry > p->entries);
86 old = p;
87 p = p->next;
88 free_page((unsigned long) old);
89 }
90}
91
92EXPORT_SYMBOL(poll_freewait);
93
Andi Kleen70674f92006-03-28 01:56:33 -080094static struct poll_table_entry *poll_get_entry(poll_table *_p)
Linus Torvalds1da177e2005-04-16 15:20:36 -070095{
96 struct poll_wqueues *p = container_of(_p, struct poll_wqueues, pt);
97 struct poll_table_page *table = p->table;
98
Andi Kleen70674f92006-03-28 01:56:33 -080099 if (p->inline_index < N_INLINE_POLL_ENTRIES)
100 return p->inline_entries + p->inline_index++;
101
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 if (!table || POLL_TABLE_FULL(table)) {
103 struct poll_table_page *new_table;
104
105 new_table = (struct poll_table_page *) __get_free_page(GFP_KERNEL);
106 if (!new_table) {
107 p->error = -ENOMEM;
108 __set_current_state(TASK_RUNNING);
Andi Kleen70674f92006-03-28 01:56:33 -0800109 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110 }
111 new_table->entry = new_table->entries;
112 new_table->next = table;
113 p->table = new_table;
114 table = new_table;
115 }
116
Andi Kleen70674f92006-03-28 01:56:33 -0800117 return table->entry++;
118}
119
120/* Add a new entry */
121static void __pollwait(struct file *filp, wait_queue_head_t *wait_address,
122 poll_table *p)
123{
124 struct poll_table_entry *entry = poll_get_entry(p);
125 if (!entry)
126 return;
127 get_file(filp);
128 entry->filp = filp;
129 entry->wait_address = wait_address;
130 init_waitqueue_entry(&entry->wait, current);
WANG Congccf67802007-05-09 07:10:02 +0200131 add_wait_queue(wait_address, &entry->wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132}
133
Thomas Gleixnerb773ad42008-08-31 08:16:57 -0700134/**
135 * poll_select_set_timeout - helper function to setup the timeout value
136 * @to: pointer to timespec variable for the final timeout
137 * @sec: seconds (from user space)
138 * @nsec: nanoseconds (from user space)
139 *
140 * Note, we do not use a timespec for the user space value here, That
141 * way we can use the function for timeval and compat interfaces as well.
142 *
143 * Returns -EINVAL if sec/nsec are not normalized. Otherwise 0.
144 */
145int poll_select_set_timeout(struct timespec *to, long sec, long nsec)
146{
147 struct timespec ts = {.tv_sec = sec, .tv_nsec = nsec};
148
149 if (!timespec_valid(&ts))
150 return -EINVAL;
151
152 /* Optimize for the zero timeout value here */
153 if (!sec && !nsec) {
154 to->tv_sec = to->tv_nsec = 0;
155 } else {
156 ktime_get_ts(to);
157 *to = timespec_add_safe(*to, ts);
158 }
159 return 0;
160}
161
162static int poll_select_copy_remaining(struct timespec *end_time, void __user *p,
163 int timeval, int ret)
164{
165 struct timespec rts;
166 struct timeval rtv;
167
168 if (!p)
169 return ret;
170
171 if (current->personality & STICKY_TIMEOUTS)
172 goto sticky;
173
174 /* No update for zero timeout */
175 if (!end_time->tv_sec && !end_time->tv_nsec)
176 return ret;
177
178 ktime_get_ts(&rts);
179 rts = timespec_sub(*end_time, rts);
180 if (rts.tv_sec < 0)
181 rts.tv_sec = rts.tv_nsec = 0;
182
183 if (timeval) {
184 rtv.tv_sec = rts.tv_sec;
185 rtv.tv_usec = rts.tv_nsec / NSEC_PER_USEC;
186
187 if (!copy_to_user(p, &rtv, sizeof(rtv)))
188 return ret;
189
190 } else if (!copy_to_user(p, &rts, sizeof(rts)))
191 return ret;
192
193 /*
194 * If an application puts its timeval in read-only memory, we
195 * don't want the Linux-specific update to the timeval to
196 * cause a fault after the select has completed
197 * successfully. However, because we're not updating the
198 * timeval, we can't restart the system call.
199 */
200
201sticky:
202 if (ret == -ERESTARTNOHAND)
203 ret = -EINTR;
204 return ret;
205}
206
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207#define FDS_IN(fds, n) (fds->in + n)
208#define FDS_OUT(fds, n) (fds->out + n)
209#define FDS_EX(fds, n) (fds->ex + n)
210
211#define BITS(fds, n) (*FDS_IN(fds, n)|*FDS_OUT(fds, n)|*FDS_EX(fds, n))
212
213static int max_select_fd(unsigned long n, fd_set_bits *fds)
214{
215 unsigned long *open_fds;
216 unsigned long set;
217 int max;
Dipankar Sarmabadf1662005-09-09 13:04:10 -0700218 struct fdtable *fdt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219
220 /* handle last in-complete long-word first */
221 set = ~(~0UL << (n & (__NFDBITS-1)));
222 n /= __NFDBITS;
Dipankar Sarmabadf1662005-09-09 13:04:10 -0700223 fdt = files_fdtable(current->files);
224 open_fds = fdt->open_fds->fds_bits+n;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 max = 0;
226 if (set) {
227 set &= BITS(fds, n);
228 if (set) {
229 if (!(set & ~*open_fds))
230 goto get_max;
231 return -EBADF;
232 }
233 }
234 while (n) {
235 open_fds--;
236 n--;
237 set = BITS(fds, n);
238 if (!set)
239 continue;
240 if (set & ~*open_fds)
241 return -EBADF;
242 if (max)
243 continue;
244get_max:
245 do {
246 max++;
247 set >>= 1;
248 } while (set);
249 max += n * __NFDBITS;
250 }
251
252 return max;
253}
254
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255#define POLLIN_SET (POLLRDNORM | POLLRDBAND | POLLIN | POLLHUP | POLLERR)
256#define POLLOUT_SET (POLLWRBAND | POLLWRNORM | POLLOUT | POLLERR)
257#define POLLEX_SET (POLLPRI)
258
Arjan van de Ven8ff3e8e2008-08-31 08:26:40 -0700259int do_select(int n, fd_set_bits *fds, struct timespec *end_time)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260{
Arjan van de Ven8ff3e8e2008-08-31 08:26:40 -0700261 ktime_t expire, *to = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262 struct poll_wqueues table;
263 poll_table *wait;
Arjan van de Ven8ff3e8e2008-08-31 08:26:40 -0700264 int retval, i, timed_out = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265
Dipankar Sarmab8359962005-09-09 13:04:14 -0700266 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 retval = max_select_fd(n, fds);
Dipankar Sarmab8359962005-09-09 13:04:14 -0700268 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269
270 if (retval < 0)
271 return retval;
272 n = retval;
273
274 poll_initwait(&table);
275 wait = &table.pt;
Arjan van de Ven8ff3e8e2008-08-31 08:26:40 -0700276 if (end_time && !end_time->tv_sec && !end_time->tv_nsec) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277 wait = NULL;
Arjan van de Ven8ff3e8e2008-08-31 08:26:40 -0700278 timed_out = 1;
279 }
280
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281 retval = 0;
282 for (;;) {
283 unsigned long *rinp, *routp, *rexp, *inp, *outp, *exp;
284
285 set_current_state(TASK_INTERRUPTIBLE);
286
287 inp = fds->in; outp = fds->out; exp = fds->ex;
288 rinp = fds->res_in; routp = fds->res_out; rexp = fds->res_ex;
289
290 for (i = 0; i < n; ++rinp, ++routp, ++rexp) {
291 unsigned long in, out, ex, all_bits, bit = 1, mask, j;
292 unsigned long res_in = 0, res_out = 0, res_ex = 0;
Arjan van de Ven99ac48f2006-03-28 01:56:41 -0800293 const struct file_operations *f_op = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 struct file *file = NULL;
295
296 in = *inp++; out = *outp++; ex = *exp++;
297 all_bits = in | out | ex;
298 if (all_bits == 0) {
299 i += __NFDBITS;
300 continue;
301 }
302
303 for (j = 0; j < __NFDBITS; ++j, ++i, bit <<= 1) {
Eric Dumazete4a1f122006-03-28 01:56:34 -0800304 int fput_needed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 if (i >= n)
306 break;
307 if (!(bit & all_bits))
308 continue;
Eric Dumazete4a1f122006-03-28 01:56:34 -0800309 file = fget_light(i, &fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 if (file) {
311 f_op = file->f_op;
312 mask = DEFAULT_POLLMASK;
313 if (f_op && f_op->poll)
314 mask = (*f_op->poll)(file, retval ? NULL : wait);
Eric Dumazete4a1f122006-03-28 01:56:34 -0800315 fput_light(file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 if ((mask & POLLIN_SET) && (in & bit)) {
317 res_in |= bit;
318 retval++;
319 }
320 if ((mask & POLLOUT_SET) && (out & bit)) {
321 res_out |= bit;
322 retval++;
323 }
324 if ((mask & POLLEX_SET) && (ex & bit)) {
325 res_ex |= bit;
326 retval++;
327 }
328 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329 }
330 if (res_in)
331 *rinp = res_in;
332 if (res_out)
333 *routp = res_out;
334 if (res_ex)
335 *rexp = res_ex;
Linus Torvalds55d85382008-06-22 12:23:15 -0700336 cond_resched();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 }
338 wait = NULL;
Arjan van de Ven8ff3e8e2008-08-31 08:26:40 -0700339 if (retval || timed_out || signal_pending(current))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340 break;
Pavel Machekf5264482008-04-21 22:15:06 +0000341 if (table.error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 retval = table.error;
343 break;
344 }
David Woodhouse9f729492006-01-18 17:44:05 -0800345
Arjan van de Ven8ff3e8e2008-08-31 08:26:40 -0700346 /*
347 * If this is the first loop and we have a timeout
348 * given, then we convert to ktime_t and set the to
349 * pointer to the expiry value.
350 */
351 if (end_time && !to) {
352 expire = timespec_to_ktime(*end_time);
353 to = &expire;
David Woodhouse9f729492006-01-18 17:44:05 -0800354 }
Arjan van de Ven8ff3e8e2008-08-31 08:26:40 -0700355
356 if (!schedule_hrtimeout(to, HRTIMER_MODE_ABS))
357 timed_out = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358 }
359 __set_current_state(TASK_RUNNING);
360
361 poll_freewait(&table);
362
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363 return retval;
364}
365
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366/*
367 * We can actually return ERESTARTSYS instead of EINTR, but I'd
368 * like to be certain this leads to no problems. So I return
369 * EINTR just for safety.
370 *
371 * Update: ERESTARTSYS breaks at least the xview clock binary, so
372 * I'm trying ERESTARTNOHAND which restart only when you want to.
373 */
374#define MAX_SELECT_SECONDS \
375 ((unsigned long) (MAX_SCHEDULE_TIMEOUT / HZ)-1)
376
Al Viroa2dcb442008-04-23 14:05:15 -0400377int core_sys_select(int n, fd_set __user *inp, fd_set __user *outp,
Arjan van de Ven8ff3e8e2008-08-31 08:26:40 -0700378 fd_set __user *exp, struct timespec *end_time)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379{
380 fd_set_bits fds;
Andrew Morton29ff2db2006-04-10 22:52:46 -0700381 void *bits;
Vadim Lobanovbbea9f62006-12-10 02:21:12 -0800382 int ret, max_fds;
Mitchell Blank Jrb04eb6a2006-04-10 22:54:08 -0700383 unsigned int size;
Dipankar Sarmabadf1662005-09-09 13:04:10 -0700384 struct fdtable *fdt;
Andi Kleen70674f92006-03-28 01:56:33 -0800385 /* Allocate small arguments on the stack to save memory and be faster */
Jes Sorensen30c14e42006-03-31 11:18:57 -0500386 long stack_fds[SELECT_STACK_ALLOC/sizeof(long)];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388 ret = -EINVAL;
389 if (n < 0)
390 goto out_nofds;
391
Vadim Lobanovbbea9f62006-12-10 02:21:12 -0800392 /* max_fds can increase, so grab it once to avoid race */
Dipankar Sarmab8359962005-09-09 13:04:14 -0700393 rcu_read_lock();
Dipankar Sarmabadf1662005-09-09 13:04:10 -0700394 fdt = files_fdtable(current->files);
Vadim Lobanovbbea9f62006-12-10 02:21:12 -0800395 max_fds = fdt->max_fds;
Dipankar Sarmab8359962005-09-09 13:04:14 -0700396 rcu_read_unlock();
Vadim Lobanovbbea9f62006-12-10 02:21:12 -0800397 if (n > max_fds)
398 n = max_fds;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399
400 /*
401 * We need 6 bitmaps (in/out/ex for both incoming and outgoing),
402 * since we used fdset we need to allocate memory in units of
403 * long-words.
404 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 size = FDS_BYTES(n);
Mitchell Blank Jrb04eb6a2006-04-10 22:54:08 -0700406 bits = stack_fds;
407 if (size > sizeof(stack_fds) / 6) {
408 /* Not enough space in on-stack array; must use kmalloc */
409 ret = -ENOMEM;
Andi Kleen70674f92006-03-28 01:56:33 -0800410 bits = kmalloc(6 * size, GFP_KERNEL);
Mitchell Blank Jrb04eb6a2006-04-10 22:54:08 -0700411 if (!bits)
412 goto out_nofds;
413 }
Andrew Morton29ff2db2006-04-10 22:52:46 -0700414 fds.in = bits;
415 fds.out = bits + size;
416 fds.ex = bits + 2*size;
417 fds.res_in = bits + 3*size;
418 fds.res_out = bits + 4*size;
419 fds.res_ex = bits + 5*size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420
421 if ((ret = get_fd_set(n, inp, fds.in)) ||
422 (ret = get_fd_set(n, outp, fds.out)) ||
423 (ret = get_fd_set(n, exp, fds.ex)))
424 goto out;
425 zero_fd_set(n, fds.res_in);
426 zero_fd_set(n, fds.res_out);
427 zero_fd_set(n, fds.res_ex);
428
Arjan van de Ven8ff3e8e2008-08-31 08:26:40 -0700429 ret = do_select(n, &fds, end_time);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430
431 if (ret < 0)
432 goto out;
433 if (!ret) {
434 ret = -ERESTARTNOHAND;
435 if (signal_pending(current))
436 goto out;
437 ret = 0;
438 }
439
440 if (set_fd_set(n, inp, fds.res_in) ||
441 set_fd_set(n, outp, fds.res_out) ||
442 set_fd_set(n, exp, fds.res_ex))
443 ret = -EFAULT;
444
445out:
Andi Kleen70674f92006-03-28 01:56:33 -0800446 if (bits != stack_fds)
447 kfree(bits);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448out_nofds:
449 return ret;
450}
451
David Woodhouse9f729492006-01-18 17:44:05 -0800452asmlinkage long sys_select(int n, fd_set __user *inp, fd_set __user *outp,
453 fd_set __user *exp, struct timeval __user *tvp)
454{
Arjan van de Ven8ff3e8e2008-08-31 08:26:40 -0700455 struct timespec end_time, *to = NULL;
David Woodhouse9f729492006-01-18 17:44:05 -0800456 struct timeval tv;
457 int ret;
458
459 if (tvp) {
460 if (copy_from_user(&tv, tvp, sizeof(tv)))
461 return -EFAULT;
462
Arjan van de Ven8ff3e8e2008-08-31 08:26:40 -0700463 to = &end_time;
464 if (poll_select_set_timeout(to, tv.tv_sec,
465 tv.tv_usec * NSEC_PER_USEC))
David Woodhouse9f729492006-01-18 17:44:05 -0800466 return -EINVAL;
David Woodhouse9f729492006-01-18 17:44:05 -0800467 }
468
Arjan van de Ven8ff3e8e2008-08-31 08:26:40 -0700469 ret = core_sys_select(n, inp, outp, exp, to);
470 ret = poll_select_copy_remaining(&end_time, tvp, 1, ret);
David Woodhouse9f729492006-01-18 17:44:05 -0800471
472 return ret;
473}
474
Roland McGrathf3de2722008-04-30 00:53:09 -0700475#ifdef HAVE_SET_RESTORE_SIGMASK
David Woodhouse9f729492006-01-18 17:44:05 -0800476asmlinkage long sys_pselect7(int n, fd_set __user *inp, fd_set __user *outp,
477 fd_set __user *exp, struct timespec __user *tsp,
478 const sigset_t __user *sigmask, size_t sigsetsize)
479{
David Woodhouse9f729492006-01-18 17:44:05 -0800480 sigset_t ksigmask, sigsaved;
Arjan van de Ven8ff3e8e2008-08-31 08:26:40 -0700481 struct timespec ts, end_time, *to = NULL;
David Woodhouse9f729492006-01-18 17:44:05 -0800482 int ret;
483
484 if (tsp) {
485 if (copy_from_user(&ts, tsp, sizeof(ts)))
486 return -EFAULT;
487
Arjan van de Ven8ff3e8e2008-08-31 08:26:40 -0700488 to = &end_time;
489 if (poll_select_set_timeout(to, ts.tv_sec, ts.tv_nsec))
David Woodhouse9f729492006-01-18 17:44:05 -0800490 return -EINVAL;
David Woodhouse9f729492006-01-18 17:44:05 -0800491 }
492
493 if (sigmask) {
494 /* XXX: Don't preclude handling different sized sigset_t's. */
495 if (sigsetsize != sizeof(sigset_t))
496 return -EINVAL;
497 if (copy_from_user(&ksigmask, sigmask, sizeof(ksigmask)))
498 return -EFAULT;
499
500 sigdelsetmask(&ksigmask, sigmask(SIGKILL)|sigmask(SIGSTOP));
501 sigprocmask(SIG_SETMASK, &ksigmask, &sigsaved);
502 }
503
Arjan van de Ven8ff3e8e2008-08-31 08:26:40 -0700504 ret = core_sys_select(n, inp, outp, exp, &end_time);
505 ret = poll_select_copy_remaining(&end_time, tsp, 0, ret);
David Woodhouse9f729492006-01-18 17:44:05 -0800506
507 if (ret == -ERESTARTNOHAND) {
508 /*
509 * Don't restore the signal mask yet. Let do_signal() deliver
510 * the signal on the way back to userspace, before the signal
511 * mask is restored.
512 */
513 if (sigmask) {
514 memcpy(&current->saved_sigmask, &sigsaved,
515 sizeof(sigsaved));
Roland McGrath4e4c22c2008-04-30 00:53:06 -0700516 set_restore_sigmask();
David Woodhouse9f729492006-01-18 17:44:05 -0800517 }
518 } else if (sigmask)
519 sigprocmask(SIG_SETMASK, &sigsaved, NULL);
520
521 return ret;
522}
523
524/*
525 * Most architectures can't handle 7-argument syscalls. So we provide a
526 * 6-argument version where the sixth argument is a pointer to a structure
527 * which has a pointer to the sigset_t itself followed by a size_t containing
528 * the sigset size.
529 */
530asmlinkage long sys_pselect6(int n, fd_set __user *inp, fd_set __user *outp,
531 fd_set __user *exp, struct timespec __user *tsp, void __user *sig)
532{
533 size_t sigsetsize = 0;
534 sigset_t __user *up = NULL;
535
536 if (sig) {
537 if (!access_ok(VERIFY_READ, sig, sizeof(void *)+sizeof(size_t))
Al Viroe110ab92006-02-01 05:26:09 -0500538 || __get_user(up, (sigset_t __user * __user *)sig)
David Woodhouse9f729492006-01-18 17:44:05 -0800539 || __get_user(sigsetsize,
Al Viroe110ab92006-02-01 05:26:09 -0500540 (size_t __user *)(sig+sizeof(void *))))
David Woodhouse9f729492006-01-18 17:44:05 -0800541 return -EFAULT;
542 }
543
544 return sys_pselect7(n, inp, outp, exp, tsp, up, sigsetsize);
545}
Roland McGrathf3de2722008-04-30 00:53:09 -0700546#endif /* HAVE_SET_RESTORE_SIGMASK */
David Woodhouse9f729492006-01-18 17:44:05 -0800547
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548struct poll_list {
549 struct poll_list *next;
550 int len;
551 struct pollfd entries[0];
552};
553
554#define POLLFD_PER_PAGE ((PAGE_SIZE-sizeof(struct poll_list)) / sizeof(struct pollfd))
555
Vadim Lobanov4a4b69f2006-06-23 02:05:16 -0700556/*
557 * Fish for pollable events on the pollfd->fd file descriptor. We're only
558 * interested in events matching the pollfd->events mask, and the result
559 * matching that mask is both recorded in pollfd->revents and returned. The
560 * pwait poll_table will be used by the fd-provided poll handler for waiting,
561 * if non-NULL.
562 */
563static inline unsigned int do_pollfd(struct pollfd *pollfd, poll_table *pwait)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564{
Vadim Lobanov4a4b69f2006-06-23 02:05:16 -0700565 unsigned int mask;
566 int fd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567
Vadim Lobanov4a4b69f2006-06-23 02:05:16 -0700568 mask = 0;
569 fd = pollfd->fd;
570 if (fd >= 0) {
571 int fput_needed;
572 struct file * file;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573
Vadim Lobanov4a4b69f2006-06-23 02:05:16 -0700574 file = fget_light(fd, &fput_needed);
575 mask = POLLNVAL;
576 if (file != NULL) {
577 mask = DEFAULT_POLLMASK;
578 if (file->f_op && file->f_op->poll)
579 mask = file->f_op->poll(file, pwait);
580 /* Mask out unneeded events. */
581 mask &= pollfd->events | POLLERR | POLLHUP;
582 fput_light(file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584 }
Vadim Lobanov4a4b69f2006-06-23 02:05:16 -0700585 pollfd->revents = mask;
586
587 return mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588}
589
590static int do_poll(unsigned int nfds, struct poll_list *list,
Arjan van de Ven8ff3e8e2008-08-31 08:26:40 -0700591 struct poll_wqueues *wait, struct timespec *end_time)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 poll_table* pt = &wait->pt;
Arjan van de Ven8ff3e8e2008-08-31 08:26:40 -0700594 ktime_t expire, *to = NULL;
595 int timed_out = 0, count = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596
David Woodhouse9f729492006-01-18 17:44:05 -0800597 /* Optimise the no-wait case */
Arjan van de Ven8ff3e8e2008-08-31 08:26:40 -0700598 if (end_time && !end_time->tv_sec && !end_time->tv_nsec) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599 pt = NULL;
Arjan van de Ven8ff3e8e2008-08-31 08:26:40 -0700600 timed_out = 1;
601 }
Oleg Nesterov9bf084f2007-10-16 23:26:18 -0700602
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 for (;;) {
604 struct poll_list *walk;
David Woodhouse9f729492006-01-18 17:44:05 -0800605
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 set_current_state(TASK_INTERRUPTIBLE);
Vadim Lobanov4a4b69f2006-06-23 02:05:16 -0700607 for (walk = list; walk != NULL; walk = walk->next) {
608 struct pollfd * pfd, * pfd_end;
609
610 pfd = walk->entries;
611 pfd_end = pfd + walk->len;
612 for (; pfd != pfd_end; pfd++) {
613 /*
614 * Fish for events. If we found one, record it
615 * and kill the poll_table, so we don't
616 * needlessly register any other waiters after
617 * this. They'll get immediately deregistered
618 * when we break out and return.
619 */
620 if (do_pollfd(pfd, pt)) {
621 count++;
622 pt = NULL;
623 }
624 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625 }
Vadim Lobanov4a4b69f2006-06-23 02:05:16 -0700626 /*
627 * All waiters have already been registered, so don't provide
628 * a poll_table to them on the next loop iteration.
629 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630 pt = NULL;
Oleg Nesterov9bf084f2007-10-16 23:26:18 -0700631 if (!count) {
632 count = wait->error;
633 if (signal_pending(current))
634 count = -EINTR;
635 }
Arjan van de Ven8ff3e8e2008-08-31 08:26:40 -0700636 if (count || timed_out)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 break;
David Woodhouse9f729492006-01-18 17:44:05 -0800638
Arjan van de Ven8ff3e8e2008-08-31 08:26:40 -0700639 /*
640 * If this is the first loop and we have a timeout
641 * given, then we convert to ktime_t and set the to
642 * pointer to the expiry value.
643 */
644 if (end_time && !to) {
645 expire = timespec_to_ktime(*end_time);
646 to = &expire;
David Woodhouse9f729492006-01-18 17:44:05 -0800647 }
648
Arjan van de Ven8ff3e8e2008-08-31 08:26:40 -0700649 if (!schedule_hrtimeout(to, HRTIMER_MODE_ABS))
650 timed_out = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651 }
652 __set_current_state(TASK_RUNNING);
653 return count;
654}
655
Andi Kleen70674f92006-03-28 01:56:33 -0800656#define N_STACK_PPS ((sizeof(stack_pps) - sizeof(struct poll_list)) / \
657 sizeof(struct pollfd))
658
Arjan van de Ven8ff3e8e2008-08-31 08:26:40 -0700659int do_sys_poll(struct pollfd __user *ufds, unsigned int nfds,
660 struct timespec *end_time)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661{
662 struct poll_wqueues table;
Oleg Nesterov252e5722007-10-16 23:26:17 -0700663 int err = -EFAULT, fdcount, len, size;
Jes Sorensen30c14e42006-03-31 11:18:57 -0500664 /* Allocate small arguments on the stack to save memory and be
665 faster - use long to make sure the buffer is aligned properly
666 on 64 bit archs to avoid unaligned access */
667 long stack_pps[POLL_STACK_ALLOC/sizeof(long)];
Oleg Nesterov252e5722007-10-16 23:26:17 -0700668 struct poll_list *const head = (struct poll_list *)stack_pps;
669 struct poll_list *walk = head;
670 unsigned long todo = nfds;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671
Chris Snook4e6fd332006-09-29 02:01:33 -0700672 if (nfds > current->signal->rlim[RLIMIT_NOFILE].rlim_cur)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673 return -EINVAL;
674
Oleg Nesterov252e5722007-10-16 23:26:17 -0700675 len = min_t(unsigned int, nfds, N_STACK_PPS);
676 for (;;) {
677 walk->next = NULL;
678 walk->len = len;
679 if (!len)
680 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681
Oleg Nesterov252e5722007-10-16 23:26:17 -0700682 if (copy_from_user(walk->entries, ufds + nfds-todo,
683 sizeof(struct pollfd) * walk->len))
684 goto out_fds;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685
Oleg Nesterov252e5722007-10-16 23:26:17 -0700686 todo -= walk->len;
687 if (!todo)
688 break;
689
690 len = min(todo, POLLFD_PER_PAGE);
691 size = sizeof(struct poll_list) + sizeof(struct pollfd) * len;
692 walk = walk->next = kmalloc(size, GFP_KERNEL);
693 if (!walk) {
694 err = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695 goto out_fds;
696 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697 }
David Woodhouse9f729492006-01-18 17:44:05 -0800698
Oleg Nesterov252e5722007-10-16 23:26:17 -0700699 poll_initwait(&table);
Arjan van de Ven8ff3e8e2008-08-31 08:26:40 -0700700 fdcount = do_poll(nfds, head, &table, end_time);
Oleg Nesterov252e5722007-10-16 23:26:17 -0700701 poll_freewait(&table);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702
Oleg Nesterov252e5722007-10-16 23:26:17 -0700703 for (walk = head; walk; walk = walk->next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704 struct pollfd *fds = walk->entries;
705 int j;
706
Oleg Nesterov252e5722007-10-16 23:26:17 -0700707 for (j = 0; j < walk->len; j++, ufds++)
708 if (__put_user(fds[j].revents, &ufds->revents))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709 goto out_fds;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710 }
Oleg Nesterov252e5722007-10-16 23:26:17 -0700711
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712 err = fdcount;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713out_fds:
Oleg Nesterov252e5722007-10-16 23:26:17 -0700714 walk = head->next;
715 while (walk) {
716 struct poll_list *pos = walk;
717 walk = walk->next;
718 kfree(pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719 }
Oleg Nesterov252e5722007-10-16 23:26:17 -0700720
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721 return err;
722}
David Woodhouse9f729492006-01-18 17:44:05 -0800723
Chris Wright3075d9d2007-10-16 23:27:18 -0700724static long do_restart_poll(struct restart_block *restart_block)
725{
Arjan van de Ven8ff3e8e2008-08-31 08:26:40 -0700726 struct pollfd __user *ufds = restart_block->poll.ufds;
727 int nfds = restart_block->poll.nfds;
728 struct timespec *to = NULL, end_time;
Chris Wright3075d9d2007-10-16 23:27:18 -0700729 int ret;
730
Arjan van de Ven8ff3e8e2008-08-31 08:26:40 -0700731 if (restart_block->poll.has_timeout) {
732 end_time.tv_sec = restart_block->poll.tv_sec;
733 end_time.tv_nsec = restart_block->poll.tv_nsec;
734 to = &end_time;
735 }
736
737 ret = do_sys_poll(ufds, nfds, to);
738
Chris Wright3075d9d2007-10-16 23:27:18 -0700739 if (ret == -EINTR) {
740 restart_block->fn = do_restart_poll;
Chris Wright3075d9d2007-10-16 23:27:18 -0700741 ret = -ERESTART_RESTARTBLOCK;
742 }
743 return ret;
744}
745
David Woodhouse9f729492006-01-18 17:44:05 -0800746asmlinkage long sys_poll(struct pollfd __user *ufds, unsigned int nfds,
747 long timeout_msecs)
748{
Arjan van de Ven8ff3e8e2008-08-31 08:26:40 -0700749 struct timespec end_time, *to = NULL;
Chris Wright3075d9d2007-10-16 23:27:18 -0700750 int ret;
David Woodhouse9f729492006-01-18 17:44:05 -0800751
Arjan van de Ven8ff3e8e2008-08-31 08:26:40 -0700752 if (timeout_msecs >= 0) {
753 to = &end_time;
754 poll_select_set_timeout(to, timeout_msecs / MSEC_PER_SEC,
755 NSEC_PER_MSEC * (timeout_msecs % MSEC_PER_SEC));
David Woodhouse9f729492006-01-18 17:44:05 -0800756 }
757
Arjan van de Ven8ff3e8e2008-08-31 08:26:40 -0700758 ret = do_sys_poll(ufds, nfds, to);
759
Chris Wright3075d9d2007-10-16 23:27:18 -0700760 if (ret == -EINTR) {
761 struct restart_block *restart_block;
Arjan van de Ven8ff3e8e2008-08-31 08:26:40 -0700762
Chris Wright3075d9d2007-10-16 23:27:18 -0700763 restart_block = &current_thread_info()->restart_block;
764 restart_block->fn = do_restart_poll;
Arjan van de Ven8ff3e8e2008-08-31 08:26:40 -0700765 restart_block->poll.ufds = ufds;
766 restart_block->poll.nfds = nfds;
767
768 if (timeout_msecs >= 0) {
769 restart_block->poll.tv_sec = end_time.tv_sec;
770 restart_block->poll.tv_nsec = end_time.tv_nsec;
771 restart_block->poll.has_timeout = 1;
772 } else
773 restart_block->poll.has_timeout = 0;
774
Chris Wright3075d9d2007-10-16 23:27:18 -0700775 ret = -ERESTART_RESTARTBLOCK;
776 }
777 return ret;
David Woodhouse9f729492006-01-18 17:44:05 -0800778}
779
Roland McGrathf3de2722008-04-30 00:53:09 -0700780#ifdef HAVE_SET_RESTORE_SIGMASK
David Woodhouse9f729492006-01-18 17:44:05 -0800781asmlinkage long sys_ppoll(struct pollfd __user *ufds, unsigned int nfds,
782 struct timespec __user *tsp, const sigset_t __user *sigmask,
783 size_t sigsetsize)
784{
785 sigset_t ksigmask, sigsaved;
Arjan van de Ven8ff3e8e2008-08-31 08:26:40 -0700786 struct timespec ts, end_time, *to = NULL;
David Woodhouse9f729492006-01-18 17:44:05 -0800787 int ret;
788
789 if (tsp) {
790 if (copy_from_user(&ts, tsp, sizeof(ts)))
791 return -EFAULT;
792
Arjan van de Ven8ff3e8e2008-08-31 08:26:40 -0700793 to = &end_time;
794 if (poll_select_set_timeout(to, ts.tv_sec, ts.tv_nsec))
795 return -EINVAL;
David Woodhouse9f729492006-01-18 17:44:05 -0800796 }
797
798 if (sigmask) {
799 /* XXX: Don't preclude handling different sized sigset_t's. */
800 if (sigsetsize != sizeof(sigset_t))
801 return -EINVAL;
802 if (copy_from_user(&ksigmask, sigmask, sizeof(ksigmask)))
803 return -EFAULT;
804
805 sigdelsetmask(&ksigmask, sigmask(SIGKILL)|sigmask(SIGSTOP));
806 sigprocmask(SIG_SETMASK, &ksigmask, &sigsaved);
807 }
808
Arjan van de Ven8ff3e8e2008-08-31 08:26:40 -0700809 ret = do_sys_poll(ufds, nfds, to);
David Woodhouse9f729492006-01-18 17:44:05 -0800810
811 /* We can restart this syscall, usually */
812 if (ret == -EINTR) {
813 /*
814 * Don't restore the signal mask yet. Let do_signal() deliver
815 * the signal on the way back to userspace, before the signal
816 * mask is restored.
817 */
818 if (sigmask) {
819 memcpy(&current->saved_sigmask, &sigsaved,
820 sizeof(sigsaved));
Roland McGrath4e4c22c2008-04-30 00:53:06 -0700821 set_restore_sigmask();
David Woodhouse9f729492006-01-18 17:44:05 -0800822 }
823 ret = -ERESTARTNOHAND;
824 } else if (sigmask)
825 sigprocmask(SIG_SETMASK, &sigsaved, NULL);
826
Arjan van de Ven8ff3e8e2008-08-31 08:26:40 -0700827 ret = poll_select_copy_remaining(&end_time, tsp, 0, ret);
David Woodhouse9f729492006-01-18 17:44:05 -0800828
829 return ret;
830}
Roland McGrathf3de2722008-04-30 00:53:09 -0700831#endif /* HAVE_SET_RESTORE_SIGMASK */