]> bbs.cooldavid.org Git - net-next-2.6.git/blame - fs/select.c
hrtimer: create a "timer_slack" field in the task struct
[net-next-2.6.git] / fs / select.c
CommitLineData
1da177e4
LT
1/*
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
022a1692 17#include <linux/kernel.h>
1da177e4
LT
18#include <linux/syscalls.h>
19#include <linux/module.h>
20#include <linux/slab.h>
1da177e4
LT
21#include <linux/poll.h>
22#include <linux/personality.h> /* for STICKY_TIMEOUTS */
23#include <linux/file.h>
9f3acc31 24#include <linux/fdtable.h>
1da177e4 25#include <linux/fs.h>
b835996f 26#include <linux/rcupdate.h>
8ff3e8e8 27#include <linux/hrtimer.h>
1da177e4
LT
28
29#include <asm/uaccess.h>
30
1da177e4
LT
31struct 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 */
75c96f85
AB
52static void __pollwait(struct file *filp, wait_queue_head_t *wait_address,
53 poll_table *p);
1da177e4
LT
54
55void poll_initwait(struct poll_wqueues *pwq)
56{
57 init_poll_funcptr(&pwq->pt, __pollwait);
58 pwq->error = 0;
59 pwq->table = NULL;
70674f95 60 pwq->inline_index = 0;
1da177e4
LT
61}
62
63EXPORT_SYMBOL(poll_initwait);
64
70674f95
AK
65static void free_poll_entry(struct poll_table_entry *entry)
66{
ccf6780d 67 remove_wait_queue(entry->wait_address, &entry->wait);
70674f95
AK
68 fput(entry->filp);
69}
70
1da177e4
LT
71void poll_freewait(struct poll_wqueues *pwq)
72{
73 struct poll_table_page * p = pwq->table;
70674f95
AK
74 int i;
75 for (i = 0; i < pwq->inline_index; i++)
76 free_poll_entry(pwq->inline_entries + i);
1da177e4
LT
77 while (p) {
78 struct poll_table_entry * entry;
79 struct poll_table_page *old;
80
81 entry = p->entry;
82 do {
83 entry--;
70674f95 84 free_poll_entry(entry);
1da177e4
LT
85 } 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
70674f95 94static struct poll_table_entry *poll_get_entry(poll_table *_p)
1da177e4
LT
95{
96 struct poll_wqueues *p = container_of(_p, struct poll_wqueues, pt);
97 struct poll_table_page *table = p->table;
98
70674f95
AK
99 if (p->inline_index < N_INLINE_POLL_ENTRIES)
100 return p->inline_entries + p->inline_index++;
101
1da177e4
LT
102 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);
70674f95 109 return NULL;
1da177e4
LT
110 }
111 new_table->entry = new_table->entries;
112 new_table->next = table;
113 p->table = new_table;
114 table = new_table;
115 }
116
70674f95
AK
117 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);
ccf6780d 131 add_wait_queue(wait_address, &entry->wait);
1da177e4
LT
132}
133
b773ad40
TG
134/**
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
1da177e4
LT
207#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;
badf1662 218 struct fdtable *fdt;
1da177e4
LT
219
220 /* handle last in-complete long-word first */
221 set = ~(~0UL << (n & (__NFDBITS-1)));
222 n /= __NFDBITS;
badf1662
DS
223 fdt = files_fdtable(current->files);
224 open_fds = fdt->open_fds->fds_bits+n;
1da177e4
LT
225 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
1da177e4
LT
255#define POLLIN_SET (POLLRDNORM | POLLRDBAND | POLLIN | POLLHUP | POLLERR)
256#define POLLOUT_SET (POLLWRBAND | POLLWRNORM | POLLOUT | POLLERR)
257#define POLLEX_SET (POLLPRI)
258
8ff3e8e8 259int do_select(int n, fd_set_bits *fds, struct timespec *end_time)
1da177e4 260{
8ff3e8e8 261 ktime_t expire, *to = NULL;
1da177e4
LT
262 struct poll_wqueues table;
263 poll_table *wait;
8ff3e8e8 264 int retval, i, timed_out = 0;
1da177e4 265
b835996f 266 rcu_read_lock();
1da177e4 267 retval = max_select_fd(n, fds);
b835996f 268 rcu_read_unlock();
1da177e4
LT
269
270 if (retval < 0)
271 return retval;
272 n = retval;
273
274 poll_initwait(&table);
275 wait = &table.pt;
8ff3e8e8 276 if (end_time && !end_time->tv_sec && !end_time->tv_nsec) {
1da177e4 277 wait = NULL;
8ff3e8e8
AV
278 timed_out = 1;
279 }
280
1da177e4
LT
281 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;
99ac48f5 293 const struct file_operations *f_op = NULL;
1da177e4
LT
294 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) {
e4a1f129 304 int fput_needed;
1da177e4
LT
305 if (i >= n)
306 break;
307 if (!(bit & all_bits))
308 continue;
e4a1f129 309 file = fget_light(i, &fput_needed);
1da177e4
LT
310 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);
e4a1f129 315 fput_light(file, fput_needed);
1da177e4
LT
316 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 }
1da177e4
LT
329 }
330 if (res_in)
331 *rinp = res_in;
332 if (res_out)
333 *routp = res_out;
334 if (res_ex)
335 *rexp = res_ex;
55d85384 336 cond_resched();
1da177e4
LT
337 }
338 wait = NULL;
8ff3e8e8 339 if (retval || timed_out || signal_pending(current))
1da177e4 340 break;
f5264481 341 if (table.error) {
1da177e4
LT
342 retval = table.error;
343 break;
344 }
9f72949f 345
8ff3e8e8
AV
346 /*
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;
9f72949f 354 }
8ff3e8e8
AV
355
356 if (!schedule_hrtimeout(to, HRTIMER_MODE_ABS))
357 timed_out = 1;
1da177e4
LT
358 }
359 __set_current_state(TASK_RUNNING);
360
361 poll_freewait(&table);
362
1da177e4
LT
363 return retval;
364}
365
1da177e4
LT
366/*
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
a2dcb44c 377int core_sys_select(int n, fd_set __user *inp, fd_set __user *outp,
8ff3e8e8 378 fd_set __user *exp, struct timespec *end_time)
1da177e4
LT
379{
380 fd_set_bits fds;
29ff2db5 381 void *bits;
bbea9f69 382 int ret, max_fds;
b04eb6aa 383 unsigned int size;
badf1662 384 struct fdtable *fdt;
70674f95 385 /* Allocate small arguments on the stack to save memory and be faster */
30c14e40 386 long stack_fds[SELECT_STACK_ALLOC/sizeof(long)];
1da177e4 387
1da177e4
LT
388 ret = -EINVAL;
389 if (n < 0)
390 goto out_nofds;
391
bbea9f69 392 /* max_fds can increase, so grab it once to avoid race */
b835996f 393 rcu_read_lock();
badf1662 394 fdt = files_fdtable(current->files);
bbea9f69 395 max_fds = fdt->max_fds;
b835996f 396 rcu_read_unlock();
bbea9f69
VL
397 if (n > max_fds)
398 n = max_fds;
1da177e4
LT
399
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 */
1da177e4 405 size = FDS_BYTES(n);
b04eb6aa
MBJ
406 bits = stack_fds;
407 if (size > sizeof(stack_fds) / 6) {
408 /* Not enough space in on-stack array; must use kmalloc */
409 ret = -ENOMEM;
70674f95 410 bits = kmalloc(6 * size, GFP_KERNEL);
b04eb6aa
MBJ
411 if (!bits)
412 goto out_nofds;
413 }
29ff2db5
AM
414 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;
1da177e4
LT
420
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
8ff3e8e8 429 ret = do_select(n, &fds, end_time);
1da177e4
LT
430
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:
70674f95
AK
446 if (bits != stack_fds)
447 kfree(bits);
1da177e4
LT
448out_nofds:
449 return ret;
450}
451
9f72949f
DW
452asmlinkage long sys_select(int n, fd_set __user *inp, fd_set __user *outp,
453 fd_set __user *exp, struct timeval __user *tvp)
454{
8ff3e8e8 455 struct timespec end_time, *to = NULL;
9f72949f
DW
456 struct timeval tv;
457 int ret;
458
459 if (tvp) {
460 if (copy_from_user(&tv, tvp, sizeof(tv)))
461 return -EFAULT;
462
8ff3e8e8
AV
463 to = &end_time;
464 if (poll_select_set_timeout(to, tv.tv_sec,
465 tv.tv_usec * NSEC_PER_USEC))
9f72949f 466 return -EINVAL;
9f72949f
DW
467 }
468
8ff3e8e8
AV
469 ret = core_sys_select(n, inp, outp, exp, to);
470 ret = poll_select_copy_remaining(&end_time, tvp, 1, ret);
9f72949f
DW
471
472 return ret;
473}
474
f3de272b 475#ifdef HAVE_SET_RESTORE_SIGMASK
9f72949f
DW
476asmlinkage 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{
9f72949f 480 sigset_t ksigmask, sigsaved;
8ff3e8e8 481 struct timespec ts, end_time, *to = NULL;
9f72949f
DW
482 int ret;
483
484 if (tsp) {
485 if (copy_from_user(&ts, tsp, sizeof(ts)))
486 return -EFAULT;
487
8ff3e8e8
AV
488 to = &end_time;
489 if (poll_select_set_timeout(to, ts.tv_sec, ts.tv_nsec))
9f72949f 490 return -EINVAL;
9f72949f
DW
491 }
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
8ff3e8e8
AV
504 ret = core_sys_select(n, inp, outp, exp, &end_time);
505 ret = poll_select_copy_remaining(&end_time, tsp, 0, ret);
9f72949f
DW
506
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));
4e4c22c7 516 set_restore_sigmask();
9f72949f
DW
517 }
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))
e110ab94 538 || __get_user(up, (sigset_t __user * __user *)sig)
9f72949f 539 || __get_user(sigsetsize,
e110ab94 540 (size_t __user *)(sig+sizeof(void *))))
9f72949f
DW
541 return -EFAULT;
542 }
543
544 return sys_pselect7(n, inp, outp, exp, tsp, up, sigsetsize);
545}
f3de272b 546#endif /* HAVE_SET_RESTORE_SIGMASK */
9f72949f 547
1da177e4
LT
548struct 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
4a4b69f7
VL
556/*
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)
1da177e4 564{
4a4b69f7
VL
565 unsigned int mask;
566 int fd;
567
568 mask = 0;
569 fd = pollfd->fd;
570 if (fd >= 0) {
571 int fput_needed;
572 struct file * file;
573
574 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);
1da177e4 583 }
1da177e4 584 }
4a4b69f7
VL
585 pollfd->revents = mask;
586
587 return mask;
1da177e4
LT
588}
589
590static int do_poll(unsigned int nfds, struct poll_list *list,
8ff3e8e8 591 struct poll_wqueues *wait, struct timespec *end_time)
1da177e4 592{
1da177e4 593 poll_table* pt = &wait->pt;
8ff3e8e8
AV
594 ktime_t expire, *to = NULL;
595 int timed_out = 0, count = 0;
1da177e4 596
9f72949f 597 /* Optimise the no-wait case */
8ff3e8e8 598 if (end_time && !end_time->tv_sec && !end_time->tv_nsec) {
1da177e4 599 pt = NULL;
8ff3e8e8
AV
600 timed_out = 1;
601 }
9bf084f7 602
1da177e4
LT
603 for (;;) {
604 struct poll_list *walk;
9f72949f 605
1da177e4 606 set_current_state(TASK_INTERRUPTIBLE);
4a4b69f7
VL
607 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 }
1da177e4 625 }
4a4b69f7
VL
626 /*
627 * All waiters have already been registered, so don't provide
628 * a poll_table to them on the next loop iteration.
629 */
1da177e4 630 pt = NULL;
9bf084f7
ON
631 if (!count) {
632 count = wait->error;
633 if (signal_pending(current))
634 count = -EINTR;
635 }
8ff3e8e8 636 if (count || timed_out)
1da177e4 637 break;
9f72949f 638
8ff3e8e8
AV
639 /*
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;
9f72949f
DW
647 }
648
8ff3e8e8
AV
649 if (!schedule_hrtimeout(to, HRTIMER_MODE_ABS))
650 timed_out = 1;
1da177e4
LT
651 }
652 __set_current_state(TASK_RUNNING);
653 return count;
654}
655
70674f95
AK
656#define N_STACK_PPS ((sizeof(stack_pps) - sizeof(struct poll_list)) / \
657 sizeof(struct pollfd))
658
8ff3e8e8
AV
659int do_sys_poll(struct pollfd __user *ufds, unsigned int nfds,
660 struct timespec *end_time)
1da177e4
LT
661{
662 struct poll_wqueues table;
252e5725 663 int err = -EFAULT, fdcount, len, size;
30c14e40
JS
664 /* 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)];
252e5725
ON
668 struct poll_list *const head = (struct poll_list *)stack_pps;
669 struct poll_list *walk = head;
670 unsigned long todo = nfds;
1da177e4 671
4e6fd33b 672 if (nfds > current->signal->rlim[RLIMIT_NOFILE].rlim_cur)
1da177e4
LT
673 return -EINVAL;
674
252e5725
ON
675 len = min_t(unsigned int, nfds, N_STACK_PPS);
676 for (;;) {
677 walk->next = NULL;
678 walk->len = len;
679 if (!len)
680 break;
1da177e4 681
252e5725
ON
682 if (copy_from_user(walk->entries, ufds + nfds-todo,
683 sizeof(struct pollfd) * walk->len))
684 goto out_fds;
685
686 todo -= walk->len;
687 if (!todo)
688 break;
1da177e4 689
252e5725
ON
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;
1da177e4
LT
695 goto out_fds;
696 }
1da177e4 697 }
9f72949f 698
252e5725 699 poll_initwait(&table);
8ff3e8e8 700 fdcount = do_poll(nfds, head, &table, end_time);
252e5725 701 poll_freewait(&table);
1da177e4 702
252e5725 703 for (walk = head; walk; walk = walk->next) {
1da177e4
LT
704 struct pollfd *fds = walk->entries;
705 int j;
706
252e5725
ON
707 for (j = 0; j < walk->len; j++, ufds++)
708 if (__put_user(fds[j].revents, &ufds->revents))
1da177e4 709 goto out_fds;
1da177e4 710 }
252e5725 711
1da177e4 712 err = fdcount;
1da177e4 713out_fds:
252e5725
ON
714 walk = head->next;
715 while (walk) {
716 struct poll_list *pos = walk;
717 walk = walk->next;
718 kfree(pos);
1da177e4 719 }
252e5725 720
1da177e4
LT
721 return err;
722}
9f72949f 723
3075d9da
CW
724static long do_restart_poll(struct restart_block *restart_block)
725{
8ff3e8e8
AV
726 struct pollfd __user *ufds = restart_block->poll.ufds;
727 int nfds = restart_block->poll.nfds;
728 struct timespec *to = NULL, end_time;
3075d9da
CW
729 int ret;
730
8ff3e8e8
AV
731 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
3075d9da
CW
739 if (ret == -EINTR) {
740 restart_block->fn = do_restart_poll;
3075d9da
CW
741 ret = -ERESTART_RESTARTBLOCK;
742 }
743 return ret;
744}
745
9f72949f
DW
746asmlinkage long sys_poll(struct pollfd __user *ufds, unsigned int nfds,
747 long timeout_msecs)
748{
8ff3e8e8 749 struct timespec end_time, *to = NULL;
3075d9da 750 int ret;
9f72949f 751
8ff3e8e8
AV
752 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));
9f72949f
DW
756 }
757
8ff3e8e8
AV
758 ret = do_sys_poll(ufds, nfds, to);
759
3075d9da
CW
760 if (ret == -EINTR) {
761 struct restart_block *restart_block;
8ff3e8e8 762
3075d9da
CW
763 restart_block = &current_thread_info()->restart_block;
764 restart_block->fn = do_restart_poll;
8ff3e8e8
AV
765 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
3075d9da
CW
775 ret = -ERESTART_RESTARTBLOCK;
776 }
777 return ret;
9f72949f
DW
778}
779
f3de272b 780#ifdef HAVE_SET_RESTORE_SIGMASK
9f72949f
DW
781asmlinkage 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;
8ff3e8e8 786 struct timespec ts, end_time, *to = NULL;
9f72949f
DW
787 int ret;
788
789 if (tsp) {
790 if (copy_from_user(&ts, tsp, sizeof(ts)))
791 return -EFAULT;
792
8ff3e8e8
AV
793 to = &end_time;
794 if (poll_select_set_timeout(to, ts.tv_sec, ts.tv_nsec))
795 return -EINVAL;
9f72949f
DW
796 }
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
8ff3e8e8 809 ret = do_sys_poll(ufds, nfds, to);
9f72949f
DW
810
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));
4e4c22c7 821 set_restore_sigmask();
9f72949f
DW
822 }
823 ret = -ERESTARTNOHAND;
824 } else if (sigmask)
825 sigprocmask(SIG_SETMASK, &sigsaved, NULL);
826
8ff3e8e8 827 ret = poll_select_copy_remaining(&end_time, tsp, 0, ret);
9f72949f
DW
828
829 return ret;
830}
f3de272b 831#endif /* HAVE_SET_RESTORE_SIGMASK */