hrtimer: incorporate feedback from Peter Zijlstra
[safe/jmp/linux-2.6] / fs / select.c
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
17 #include <linux/kernel.h>
18 #include <linux/syscalls.h>
19 #include <linux/module.h>
20 #include <linux/slab.h>
21 #include <linux/poll.h>
22 #include <linux/personality.h> /* for STICKY_TIMEOUTS */
23 #include <linux/file.h>
24 #include <linux/fdtable.h>
25 #include <linux/fs.h>
26 #include <linux/rcupdate.h>
27 #include <linux/hrtimer.h>
28
29 #include <asm/uaccess.h>
30
31
32 /*
33  * Estimate expected accuracy in ns from a timeval.
34  *
35  * After quite a bit of churning around, we've settled on
36  * a simple thing of taking 0.1% of the timeout as the
37  * slack, with a cap of 100 msec.
38  * "nice" tasks get a 0.5% slack instead.
39  *
40  * Consider this comment an open invitation to come up with even
41  * better solutions..
42  */
43
44 static unsigned long __estimate_accuracy(struct timespec *tv)
45 {
46         unsigned long slack;
47         int divfactor = 1000;
48
49         if (task_nice(current) > 0)
50                 divfactor = divfactor / 5;
51
52         slack = tv->tv_nsec / divfactor;
53         slack += tv->tv_sec * (NSEC_PER_SEC/divfactor);
54
55         if (slack > 100 * NSEC_PER_MSEC)
56                 slack =  100 * NSEC_PER_MSEC;
57         return slack;
58 }
59
60 static unsigned long estimate_accuracy(struct timespec *tv)
61 {
62         unsigned long ret;
63         struct timespec now;
64
65         /*
66          * Realtime tasks get a slack of 0 for obvious reasons.
67          */
68
69         if (rt_task(current))
70                 return 0;
71
72         ktime_get_ts(&now);
73         now = timespec_sub(*tv, now);
74         ret = __estimate_accuracy(&now);
75         if (ret < current->timer_slack_ns)
76                 return current->timer_slack_ns;
77         return ret;
78 }
79
80
81
82 struct poll_table_page {
83         struct poll_table_page * next;
84         struct poll_table_entry * entry;
85         struct poll_table_entry entries[0];
86 };
87
88 #define POLL_TABLE_FULL(table) \
89         ((unsigned long)((table)->entry+1) > PAGE_SIZE + (unsigned long)(table))
90
91 /*
92  * Ok, Peter made a complicated, but straightforward multiple_wait() function.
93  * I have rewritten this, taking some shortcuts: This code may not be easy to
94  * follow, but it should be free of race-conditions, and it's practical. If you
95  * understand what I'm doing here, then you understand how the linux
96  * sleep/wakeup mechanism works.
97  *
98  * Two very simple procedures, poll_wait() and poll_freewait() make all the
99  * work.  poll_wait() is an inline-function defined in <linux/poll.h>,
100  * as all select/poll functions have to call it to add an entry to the
101  * poll table.
102  */
103 static void __pollwait(struct file *filp, wait_queue_head_t *wait_address,
104                        poll_table *p);
105
106 void poll_initwait(struct poll_wqueues *pwq)
107 {
108         init_poll_funcptr(&pwq->pt, __pollwait);
109         pwq->error = 0;
110         pwq->table = NULL;
111         pwq->inline_index = 0;
112 }
113
114 EXPORT_SYMBOL(poll_initwait);
115
116 static void free_poll_entry(struct poll_table_entry *entry)
117 {
118         remove_wait_queue(entry->wait_address, &entry->wait);
119         fput(entry->filp);
120 }
121
122 void poll_freewait(struct poll_wqueues *pwq)
123 {
124         struct poll_table_page * p = pwq->table;
125         int i;
126         for (i = 0; i < pwq->inline_index; i++)
127                 free_poll_entry(pwq->inline_entries + i);
128         while (p) {
129                 struct poll_table_entry * entry;
130                 struct poll_table_page *old;
131
132                 entry = p->entry;
133                 do {
134                         entry--;
135                         free_poll_entry(entry);
136                 } while (entry > p->entries);
137                 old = p;
138                 p = p->next;
139                 free_page((unsigned long) old);
140         }
141 }
142
143 EXPORT_SYMBOL(poll_freewait);
144
145 static struct poll_table_entry *poll_get_entry(poll_table *_p)
146 {
147         struct poll_wqueues *p = container_of(_p, struct poll_wqueues, pt);
148         struct poll_table_page *table = p->table;
149
150         if (p->inline_index < N_INLINE_POLL_ENTRIES)
151                 return p->inline_entries + p->inline_index++;
152
153         if (!table || POLL_TABLE_FULL(table)) {
154                 struct poll_table_page *new_table;
155
156                 new_table = (struct poll_table_page *) __get_free_page(GFP_KERNEL);
157                 if (!new_table) {
158                         p->error = -ENOMEM;
159                         __set_current_state(TASK_RUNNING);
160                         return NULL;
161                 }
162                 new_table->entry = new_table->entries;
163                 new_table->next = table;
164                 p->table = new_table;
165                 table = new_table;
166         }
167
168         return table->entry++;
169 }
170
171 /* Add a new entry */
172 static void __pollwait(struct file *filp, wait_queue_head_t *wait_address,
173                                 poll_table *p)
174 {
175         struct poll_table_entry *entry = poll_get_entry(p);
176         if (!entry)
177                 return;
178         get_file(filp);
179         entry->filp = filp;
180         entry->wait_address = wait_address;
181         init_waitqueue_entry(&entry->wait, current);
182         add_wait_queue(wait_address, &entry->wait);
183 }
184
185 /**
186  * poll_select_set_timeout - helper function to setup the timeout value
187  * @to:         pointer to timespec variable for the final timeout
188  * @sec:        seconds (from user space)
189  * @nsec:       nanoseconds (from user space)
190  *
191  * Note, we do not use a timespec for the user space value here, That
192  * way we can use the function for timeval and compat interfaces as well.
193  *
194  * Returns -EINVAL if sec/nsec are not normalized. Otherwise 0.
195  */
196 int poll_select_set_timeout(struct timespec *to, long sec, long nsec)
197 {
198         struct timespec ts = {.tv_sec = sec, .tv_nsec = nsec};
199
200         if (!timespec_valid(&ts))
201                 return -EINVAL;
202
203         /* Optimize for the zero timeout value here */
204         if (!sec && !nsec) {
205                 to->tv_sec = to->tv_nsec = 0;
206         } else {
207                 ktime_get_ts(to);
208                 *to = timespec_add_safe(*to, ts);
209         }
210         return 0;
211 }
212
213 static int poll_select_copy_remaining(struct timespec *end_time, void __user *p,
214                                       int timeval, int ret)
215 {
216         struct timespec rts;
217         struct timeval rtv;
218
219         if (!p)
220                 return ret;
221
222         if (current->personality & STICKY_TIMEOUTS)
223                 goto sticky;
224
225         /* No update for zero timeout */
226         if (!end_time->tv_sec && !end_time->tv_nsec)
227                 return ret;
228
229         ktime_get_ts(&rts);
230         rts = timespec_sub(*end_time, rts);
231         if (rts.tv_sec < 0)
232                 rts.tv_sec = rts.tv_nsec = 0;
233
234         if (timeval) {
235                 rtv.tv_sec = rts.tv_sec;
236                 rtv.tv_usec = rts.tv_nsec / NSEC_PER_USEC;
237
238                 if (!copy_to_user(p, &rtv, sizeof(rtv)))
239                         return ret;
240
241         } else if (!copy_to_user(p, &rts, sizeof(rts)))
242                 return ret;
243
244         /*
245          * If an application puts its timeval in read-only memory, we
246          * don't want the Linux-specific update to the timeval to
247          * cause a fault after the select has completed
248          * successfully. However, because we're not updating the
249          * timeval, we can't restart the system call.
250          */
251
252 sticky:
253         if (ret == -ERESTARTNOHAND)
254                 ret = -EINTR;
255         return ret;
256 }
257
258 #define FDS_IN(fds, n)          (fds->in + n)
259 #define FDS_OUT(fds, n)         (fds->out + n)
260 #define FDS_EX(fds, n)          (fds->ex + n)
261
262 #define BITS(fds, n)    (*FDS_IN(fds, n)|*FDS_OUT(fds, n)|*FDS_EX(fds, n))
263
264 static int max_select_fd(unsigned long n, fd_set_bits *fds)
265 {
266         unsigned long *open_fds;
267         unsigned long set;
268         int max;
269         struct fdtable *fdt;
270
271         /* handle last in-complete long-word first */
272         set = ~(~0UL << (n & (__NFDBITS-1)));
273         n /= __NFDBITS;
274         fdt = files_fdtable(current->files);
275         open_fds = fdt->open_fds->fds_bits+n;
276         max = 0;
277         if (set) {
278                 set &= BITS(fds, n);
279                 if (set) {
280                         if (!(set & ~*open_fds))
281                                 goto get_max;
282                         return -EBADF;
283                 }
284         }
285         while (n) {
286                 open_fds--;
287                 n--;
288                 set = BITS(fds, n);
289                 if (!set)
290                         continue;
291                 if (set & ~*open_fds)
292                         return -EBADF;
293                 if (max)
294                         continue;
295 get_max:
296                 do {
297                         max++;
298                         set >>= 1;
299                 } while (set);
300                 max += n * __NFDBITS;
301         }
302
303         return max;
304 }
305
306 #define POLLIN_SET (POLLRDNORM | POLLRDBAND | POLLIN | POLLHUP | POLLERR)
307 #define POLLOUT_SET (POLLWRBAND | POLLWRNORM | POLLOUT | POLLERR)
308 #define POLLEX_SET (POLLPRI)
309
310 int do_select(int n, fd_set_bits *fds, struct timespec *end_time)
311 {
312         ktime_t expire, *to = NULL;
313         struct poll_wqueues table;
314         poll_table *wait;
315         int retval, i, timed_out = 0;
316         unsigned long slack = 0;
317
318         rcu_read_lock();
319         retval = max_select_fd(n, fds);
320         rcu_read_unlock();
321
322         if (retval < 0)
323                 return retval;
324         n = retval;
325
326         poll_initwait(&table);
327         wait = &table.pt;
328         if (end_time && !end_time->tv_sec && !end_time->tv_nsec) {
329                 wait = NULL;
330                 timed_out = 1;
331         }
332
333         if (end_time)
334                 slack = estimate_accuracy(end_time);
335
336         retval = 0;
337         for (;;) {
338                 unsigned long *rinp, *routp, *rexp, *inp, *outp, *exp;
339
340                 set_current_state(TASK_INTERRUPTIBLE);
341
342                 inp = fds->in; outp = fds->out; exp = fds->ex;
343                 rinp = fds->res_in; routp = fds->res_out; rexp = fds->res_ex;
344
345                 for (i = 0; i < n; ++rinp, ++routp, ++rexp) {
346                         unsigned long in, out, ex, all_bits, bit = 1, mask, j;
347                         unsigned long res_in = 0, res_out = 0, res_ex = 0;
348                         const struct file_operations *f_op = NULL;
349                         struct file *file = NULL;
350
351                         in = *inp++; out = *outp++; ex = *exp++;
352                         all_bits = in | out | ex;
353                         if (all_bits == 0) {
354                                 i += __NFDBITS;
355                                 continue;
356                         }
357
358                         for (j = 0; j < __NFDBITS; ++j, ++i, bit <<= 1) {
359                                 int fput_needed;
360                                 if (i >= n)
361                                         break;
362                                 if (!(bit & all_bits))
363                                         continue;
364                                 file = fget_light(i, &fput_needed);
365                                 if (file) {
366                                         f_op = file->f_op;
367                                         mask = DEFAULT_POLLMASK;
368                                         if (f_op && f_op->poll)
369                                                 mask = (*f_op->poll)(file, retval ? NULL : wait);
370                                         fput_light(file, fput_needed);
371                                         if ((mask & POLLIN_SET) && (in & bit)) {
372                                                 res_in |= bit;
373                                                 retval++;
374                                         }
375                                         if ((mask & POLLOUT_SET) && (out & bit)) {
376                                                 res_out |= bit;
377                                                 retval++;
378                                         }
379                                         if ((mask & POLLEX_SET) && (ex & bit)) {
380                                                 res_ex |= bit;
381                                                 retval++;
382                                         }
383                                 }
384                         }
385                         if (res_in)
386                                 *rinp = res_in;
387                         if (res_out)
388                                 *routp = res_out;
389                         if (res_ex)
390                                 *rexp = res_ex;
391                         cond_resched();
392                 }
393                 wait = NULL;
394                 if (retval || timed_out || signal_pending(current))
395                         break;
396                 if (table.error) {
397                         retval = table.error;
398                         break;
399                 }
400
401                 /*
402                  * If this is the first loop and we have a timeout
403                  * given, then we convert to ktime_t and set the to
404                  * pointer to the expiry value.
405                  */
406                 if (end_time && !to) {
407                         expire = timespec_to_ktime(*end_time);
408                         to = &expire;
409                 }
410
411                 if (!schedule_hrtimeout_range(to, slack, HRTIMER_MODE_ABS))
412                         timed_out = 1;
413         }
414         __set_current_state(TASK_RUNNING);
415
416         poll_freewait(&table);
417
418         return retval;
419 }
420
421 /*
422  * We can actually return ERESTARTSYS instead of EINTR, but I'd
423  * like to be certain this leads to no problems. So I return
424  * EINTR just for safety.
425  *
426  * Update: ERESTARTSYS breaks at least the xview clock binary, so
427  * I'm trying ERESTARTNOHAND which restart only when you want to.
428  */
429 #define MAX_SELECT_SECONDS \
430         ((unsigned long) (MAX_SCHEDULE_TIMEOUT / HZ)-1)
431
432 int core_sys_select(int n, fd_set __user *inp, fd_set __user *outp,
433                            fd_set __user *exp, struct timespec *end_time)
434 {
435         fd_set_bits fds;
436         void *bits;
437         int ret, max_fds;
438         unsigned int size;
439         struct fdtable *fdt;
440         /* Allocate small arguments on the stack to save memory and be faster */
441         long stack_fds[SELECT_STACK_ALLOC/sizeof(long)];
442
443         ret = -EINVAL;
444         if (n < 0)
445                 goto out_nofds;
446
447         /* max_fds can increase, so grab it once to avoid race */
448         rcu_read_lock();
449         fdt = files_fdtable(current->files);
450         max_fds = fdt->max_fds;
451         rcu_read_unlock();
452         if (n > max_fds)
453                 n = max_fds;
454
455         /*
456          * We need 6 bitmaps (in/out/ex for both incoming and outgoing),
457          * since we used fdset we need to allocate memory in units of
458          * long-words. 
459          */
460         size = FDS_BYTES(n);
461         bits = stack_fds;
462         if (size > sizeof(stack_fds) / 6) {
463                 /* Not enough space in on-stack array; must use kmalloc */
464                 ret = -ENOMEM;
465                 bits = kmalloc(6 * size, GFP_KERNEL);
466                 if (!bits)
467                         goto out_nofds;
468         }
469         fds.in      = bits;
470         fds.out     = bits +   size;
471         fds.ex      = bits + 2*size;
472         fds.res_in  = bits + 3*size;
473         fds.res_out = bits + 4*size;
474         fds.res_ex  = bits + 5*size;
475
476         if ((ret = get_fd_set(n, inp, fds.in)) ||
477             (ret = get_fd_set(n, outp, fds.out)) ||
478             (ret = get_fd_set(n, exp, fds.ex)))
479                 goto out;
480         zero_fd_set(n, fds.res_in);
481         zero_fd_set(n, fds.res_out);
482         zero_fd_set(n, fds.res_ex);
483
484         ret = do_select(n, &fds, end_time);
485
486         if (ret < 0)
487                 goto out;
488         if (!ret) {
489                 ret = -ERESTARTNOHAND;
490                 if (signal_pending(current))
491                         goto out;
492                 ret = 0;
493         }
494
495         if (set_fd_set(n, inp, fds.res_in) ||
496             set_fd_set(n, outp, fds.res_out) ||
497             set_fd_set(n, exp, fds.res_ex))
498                 ret = -EFAULT;
499
500 out:
501         if (bits != stack_fds)
502                 kfree(bits);
503 out_nofds:
504         return ret;
505 }
506
507 asmlinkage long sys_select(int n, fd_set __user *inp, fd_set __user *outp,
508                         fd_set __user *exp, struct timeval __user *tvp)
509 {
510         struct timespec end_time, *to = NULL;
511         struct timeval tv;
512         int ret;
513
514         if (tvp) {
515                 if (copy_from_user(&tv, tvp, sizeof(tv)))
516                         return -EFAULT;
517
518                 to = &end_time;
519                 if (poll_select_set_timeout(to, tv.tv_sec,
520                                             tv.tv_usec * NSEC_PER_USEC))
521                         return -EINVAL;
522         }
523
524         ret = core_sys_select(n, inp, outp, exp, to);
525         ret = poll_select_copy_remaining(&end_time, tvp, 1, ret);
526
527         return ret;
528 }
529
530 #ifdef HAVE_SET_RESTORE_SIGMASK
531 asmlinkage long sys_pselect7(int n, fd_set __user *inp, fd_set __user *outp,
532                 fd_set __user *exp, struct timespec __user *tsp,
533                 const sigset_t __user *sigmask, size_t sigsetsize)
534 {
535         sigset_t ksigmask, sigsaved;
536         struct timespec ts, end_time, *to = NULL;
537         int ret;
538
539         if (tsp) {
540                 if (copy_from_user(&ts, tsp, sizeof(ts)))
541                         return -EFAULT;
542
543                 to = &end_time;
544                 if (poll_select_set_timeout(to, ts.tv_sec, ts.tv_nsec))
545                         return -EINVAL;
546         }
547
548         if (sigmask) {
549                 /* XXX: Don't preclude handling different sized sigset_t's.  */
550                 if (sigsetsize != sizeof(sigset_t))
551                         return -EINVAL;
552                 if (copy_from_user(&ksigmask, sigmask, sizeof(ksigmask)))
553                         return -EFAULT;
554
555                 sigdelsetmask(&ksigmask, sigmask(SIGKILL)|sigmask(SIGSTOP));
556                 sigprocmask(SIG_SETMASK, &ksigmask, &sigsaved);
557         }
558
559         ret = core_sys_select(n, inp, outp, exp, &end_time);
560         ret = poll_select_copy_remaining(&end_time, tsp, 0, ret);
561
562         if (ret == -ERESTARTNOHAND) {
563                 /*
564                  * Don't restore the signal mask yet. Let do_signal() deliver
565                  * the signal on the way back to userspace, before the signal
566                  * mask is restored.
567                  */
568                 if (sigmask) {
569                         memcpy(&current->saved_sigmask, &sigsaved,
570                                         sizeof(sigsaved));
571                         set_restore_sigmask();
572                 }
573         } else if (sigmask)
574                 sigprocmask(SIG_SETMASK, &sigsaved, NULL);
575
576         return ret;
577 }
578
579 /*
580  * Most architectures can't handle 7-argument syscalls. So we provide a
581  * 6-argument version where the sixth argument is a pointer to a structure
582  * which has a pointer to the sigset_t itself followed by a size_t containing
583  * the sigset size.
584  */
585 asmlinkage long sys_pselect6(int n, fd_set __user *inp, fd_set __user *outp,
586         fd_set __user *exp, struct timespec __user *tsp, void __user *sig)
587 {
588         size_t sigsetsize = 0;
589         sigset_t __user *up = NULL;
590
591         if (sig) {
592                 if (!access_ok(VERIFY_READ, sig, sizeof(void *)+sizeof(size_t))
593                     || __get_user(up, (sigset_t __user * __user *)sig)
594                     || __get_user(sigsetsize,
595                                 (size_t __user *)(sig+sizeof(void *))))
596                         return -EFAULT;
597         }
598
599         return sys_pselect7(n, inp, outp, exp, tsp, up, sigsetsize);
600 }
601 #endif /* HAVE_SET_RESTORE_SIGMASK */
602
603 struct poll_list {
604         struct poll_list *next;
605         int len;
606         struct pollfd entries[0];
607 };
608
609 #define POLLFD_PER_PAGE  ((PAGE_SIZE-sizeof(struct poll_list)) / sizeof(struct pollfd))
610
611 /*
612  * Fish for pollable events on the pollfd->fd file descriptor. We're only
613  * interested in events matching the pollfd->events mask, and the result
614  * matching that mask is both recorded in pollfd->revents and returned. The
615  * pwait poll_table will be used by the fd-provided poll handler for waiting,
616  * if non-NULL.
617  */
618 static inline unsigned int do_pollfd(struct pollfd *pollfd, poll_table *pwait)
619 {
620         unsigned int mask;
621         int fd;
622
623         mask = 0;
624         fd = pollfd->fd;
625         if (fd >= 0) {
626                 int fput_needed;
627                 struct file * file;
628
629                 file = fget_light(fd, &fput_needed);
630                 mask = POLLNVAL;
631                 if (file != NULL) {
632                         mask = DEFAULT_POLLMASK;
633                         if (file->f_op && file->f_op->poll)
634                                 mask = file->f_op->poll(file, pwait);
635                         /* Mask out unneeded events. */
636                         mask &= pollfd->events | POLLERR | POLLHUP;
637                         fput_light(file, fput_needed);
638                 }
639         }
640         pollfd->revents = mask;
641
642         return mask;
643 }
644
645 static int do_poll(unsigned int nfds,  struct poll_list *list,
646                    struct poll_wqueues *wait, struct timespec *end_time)
647 {
648         poll_table* pt = &wait->pt;
649         ktime_t expire, *to = NULL;
650         int timed_out = 0, count = 0;
651         unsigned long slack = 0;
652
653         /* Optimise the no-wait case */
654         if (end_time && !end_time->tv_sec && !end_time->tv_nsec) {
655                 pt = NULL;
656                 timed_out = 1;
657         }
658
659         if (end_time)
660                 slack = estimate_accuracy(end_time);
661
662         for (;;) {
663                 struct poll_list *walk;
664
665                 set_current_state(TASK_INTERRUPTIBLE);
666                 for (walk = list; walk != NULL; walk = walk->next) {
667                         struct pollfd * pfd, * pfd_end;
668
669                         pfd = walk->entries;
670                         pfd_end = pfd + walk->len;
671                         for (; pfd != pfd_end; pfd++) {
672                                 /*
673                                  * Fish for events. If we found one, record it
674                                  * and kill the poll_table, so we don't
675                                  * needlessly register any other waiters after
676                                  * this. They'll get immediately deregistered
677                                  * when we break out and return.
678                                  */
679                                 if (do_pollfd(pfd, pt)) {
680                                         count++;
681                                         pt = NULL;
682                                 }
683                         }
684                 }
685                 /*
686                  * All waiters have already been registered, so don't provide
687                  * a poll_table to them on the next loop iteration.
688                  */
689                 pt = NULL;
690                 if (!count) {
691                         count = wait->error;
692                         if (signal_pending(current))
693                                 count = -EINTR;
694                 }
695                 if (count || timed_out)
696                         break;
697
698                 /*
699                  * If this is the first loop and we have a timeout
700                  * given, then we convert to ktime_t and set the to
701                  * pointer to the expiry value.
702                  */
703                 if (end_time && !to) {
704                         expire = timespec_to_ktime(*end_time);
705                         to = &expire;
706                 }
707
708                 if (!schedule_hrtimeout_range(to, slack, HRTIMER_MODE_ABS))
709                         timed_out = 1;
710         }
711         __set_current_state(TASK_RUNNING);
712         return count;
713 }
714
715 #define N_STACK_PPS ((sizeof(stack_pps) - sizeof(struct poll_list))  / \
716                         sizeof(struct pollfd))
717
718 int do_sys_poll(struct pollfd __user *ufds, unsigned int nfds,
719                 struct timespec *end_time)
720 {
721         struct poll_wqueues table;
722         int err = -EFAULT, fdcount, len, size;
723         /* Allocate small arguments on the stack to save memory and be
724            faster - use long to make sure the buffer is aligned properly
725            on 64 bit archs to avoid unaligned access */
726         long stack_pps[POLL_STACK_ALLOC/sizeof(long)];
727         struct poll_list *const head = (struct poll_list *)stack_pps;
728         struct poll_list *walk = head;
729         unsigned long todo = nfds;
730
731         if (nfds > current->signal->rlim[RLIMIT_NOFILE].rlim_cur)
732                 return -EINVAL;
733
734         len = min_t(unsigned int, nfds, N_STACK_PPS);
735         for (;;) {
736                 walk->next = NULL;
737                 walk->len = len;
738                 if (!len)
739                         break;
740
741                 if (copy_from_user(walk->entries, ufds + nfds-todo,
742                                         sizeof(struct pollfd) * walk->len))
743                         goto out_fds;
744
745                 todo -= walk->len;
746                 if (!todo)
747                         break;
748
749                 len = min(todo, POLLFD_PER_PAGE);
750                 size = sizeof(struct poll_list) + sizeof(struct pollfd) * len;
751                 walk = walk->next = kmalloc(size, GFP_KERNEL);
752                 if (!walk) {
753                         err = -ENOMEM;
754                         goto out_fds;
755                 }
756         }
757
758         poll_initwait(&table);
759         fdcount = do_poll(nfds, head, &table, end_time);
760         poll_freewait(&table);
761
762         for (walk = head; walk; walk = walk->next) {
763                 struct pollfd *fds = walk->entries;
764                 int j;
765
766                 for (j = 0; j < walk->len; j++, ufds++)
767                         if (__put_user(fds[j].revents, &ufds->revents))
768                                 goto out_fds;
769         }
770
771         err = fdcount;
772 out_fds:
773         walk = head->next;
774         while (walk) {
775                 struct poll_list *pos = walk;
776                 walk = walk->next;
777                 kfree(pos);
778         }
779
780         return err;
781 }
782
783 static long do_restart_poll(struct restart_block *restart_block)
784 {
785         struct pollfd __user *ufds = restart_block->poll.ufds;
786         int nfds = restart_block->poll.nfds;
787         struct timespec *to = NULL, end_time;
788         int ret;
789
790         if (restart_block->poll.has_timeout) {
791                 end_time.tv_sec = restart_block->poll.tv_sec;
792                 end_time.tv_nsec = restart_block->poll.tv_nsec;
793                 to = &end_time;
794         }
795
796         ret = do_sys_poll(ufds, nfds, to);
797
798         if (ret == -EINTR) {
799                 restart_block->fn = do_restart_poll;
800                 ret = -ERESTART_RESTARTBLOCK;
801         }
802         return ret;
803 }
804
805 asmlinkage long sys_poll(struct pollfd __user *ufds, unsigned int nfds,
806                         long timeout_msecs)
807 {
808         struct timespec end_time, *to = NULL;
809         int ret;
810
811         if (timeout_msecs >= 0) {
812                 to = &end_time;
813                 poll_select_set_timeout(to, timeout_msecs / MSEC_PER_SEC,
814                         NSEC_PER_MSEC * (timeout_msecs % MSEC_PER_SEC));
815         }
816
817         ret = do_sys_poll(ufds, nfds, to);
818
819         if (ret == -EINTR) {
820                 struct restart_block *restart_block;
821
822                 restart_block = &current_thread_info()->restart_block;
823                 restart_block->fn = do_restart_poll;
824                 restart_block->poll.ufds = ufds;
825                 restart_block->poll.nfds = nfds;
826
827                 if (timeout_msecs >= 0) {
828                         restart_block->poll.tv_sec = end_time.tv_sec;
829                         restart_block->poll.tv_nsec = end_time.tv_nsec;
830                         restart_block->poll.has_timeout = 1;
831                 } else
832                         restart_block->poll.has_timeout = 0;
833
834                 ret = -ERESTART_RESTARTBLOCK;
835         }
836         return ret;
837 }
838
839 #ifdef HAVE_SET_RESTORE_SIGMASK
840 asmlinkage long sys_ppoll(struct pollfd __user *ufds, unsigned int nfds,
841         struct timespec __user *tsp, const sigset_t __user *sigmask,
842         size_t sigsetsize)
843 {
844         sigset_t ksigmask, sigsaved;
845         struct timespec ts, end_time, *to = NULL;
846         int ret;
847
848         if (tsp) {
849                 if (copy_from_user(&ts, tsp, sizeof(ts)))
850                         return -EFAULT;
851
852                 to = &end_time;
853                 if (poll_select_set_timeout(to, ts.tv_sec, ts.tv_nsec))
854                         return -EINVAL;
855         }
856
857         if (sigmask) {
858                 /* XXX: Don't preclude handling different sized sigset_t's.  */
859                 if (sigsetsize != sizeof(sigset_t))
860                         return -EINVAL;
861                 if (copy_from_user(&ksigmask, sigmask, sizeof(ksigmask)))
862                         return -EFAULT;
863
864                 sigdelsetmask(&ksigmask, sigmask(SIGKILL)|sigmask(SIGSTOP));
865                 sigprocmask(SIG_SETMASK, &ksigmask, &sigsaved);
866         }
867
868         ret = do_sys_poll(ufds, nfds, to);
869
870         /* We can restart this syscall, usually */
871         if (ret == -EINTR) {
872                 /*
873                  * Don't restore the signal mask yet. Let do_signal() deliver
874                  * the signal on the way back to userspace, before the signal
875                  * mask is restored.
876                  */
877                 if (sigmask) {
878                         memcpy(&current->saved_sigmask, &sigsaved,
879                                         sizeof(sigsaved));
880                         set_restore_sigmask();
881                 }
882                 ret = -ERESTARTNOHAND;
883         } else if (sigmask)
884                 sigprocmask(SIG_SETMASK, &sigsaved, NULL);
885
886         ret = poll_select_copy_remaining(&end_time, tsp, 0, ret);
887
888         return ret;
889 }
890 #endif /* HAVE_SET_RESTORE_SIGMASK */