4544eb63edfa2fa488e2a3b7fe8217fda502bc08
[linux-2.6-microblaze.git] / kernel / compat.c
1 /*
2  *  linux/kernel/compat.c
3  *
4  *  Kernel compatibililty routines for e.g. 32 bit syscall support
5  *  on 64 bit kernels.
6  *
7  *  Copyright (C) 2002-2003 Stephen Rothwell, IBM Corporation
8  *
9  *  This program is free software; you can redistribute it and/or modify
10  *  it under the terms of the GNU General Public License version 2 as
11  *  published by the Free Software Foundation.
12  */
13
14 #include <linux/linkage.h>
15 #include <linux/compat.h>
16 #include <linux/errno.h>
17 #include <linux/time.h>
18 #include <linux/signal.h>
19 #include <linux/sched.h>        /* for MAX_SCHEDULE_TIMEOUT */
20 #include <linux/syscalls.h>
21 #include <linux/unistd.h>
22 #include <linux/security.h>
23 #include <linux/timex.h>
24 #include <linux/export.h>
25 #include <linux/migrate.h>
26 #include <linux/posix-timers.h>
27 #include <linux/times.h>
28 #include <linux/ptrace.h>
29 #include <linux/gfp.h>
30
31 #include <linux/uaccess.h>
32
33 int compat_get_timex(struct timex *txc, const struct compat_timex __user *utp)
34 {
35         struct compat_timex tx32;
36
37         if (copy_from_user(&tx32, utp, sizeof(struct compat_timex)))
38                 return -EFAULT;
39
40         txc->modes = tx32.modes;
41         txc->offset = tx32.offset;
42         txc->freq = tx32.freq;
43         txc->maxerror = tx32.maxerror;
44         txc->esterror = tx32.esterror;
45         txc->status = tx32.status;
46         txc->constant = tx32.constant;
47         txc->precision = tx32.precision;
48         txc->tolerance = tx32.tolerance;
49         txc->time.tv_sec = tx32.time.tv_sec;
50         txc->time.tv_usec = tx32.time.tv_usec;
51         txc->tick = tx32.tick;
52         txc->ppsfreq = tx32.ppsfreq;
53         txc->jitter = tx32.jitter;
54         txc->shift = tx32.shift;
55         txc->stabil = tx32.stabil;
56         txc->jitcnt = tx32.jitcnt;
57         txc->calcnt = tx32.calcnt;
58         txc->errcnt = tx32.errcnt;
59         txc->stbcnt = tx32.stbcnt;
60
61         return 0;
62 }
63
64 int compat_put_timex(struct compat_timex __user *utp, const struct timex *txc)
65 {
66         struct compat_timex tx32;
67
68         memset(&tx32, 0, sizeof(struct compat_timex));
69         tx32.modes = txc->modes;
70         tx32.offset = txc->offset;
71         tx32.freq = txc->freq;
72         tx32.maxerror = txc->maxerror;
73         tx32.esterror = txc->esterror;
74         tx32.status = txc->status;
75         tx32.constant = txc->constant;
76         tx32.precision = txc->precision;
77         tx32.tolerance = txc->tolerance;
78         tx32.time.tv_sec = txc->time.tv_sec;
79         tx32.time.tv_usec = txc->time.tv_usec;
80         tx32.tick = txc->tick;
81         tx32.ppsfreq = txc->ppsfreq;
82         tx32.jitter = txc->jitter;
83         tx32.shift = txc->shift;
84         tx32.stabil = txc->stabil;
85         tx32.jitcnt = txc->jitcnt;
86         tx32.calcnt = txc->calcnt;
87         tx32.errcnt = txc->errcnt;
88         tx32.stbcnt = txc->stbcnt;
89         tx32.tai = txc->tai;
90         if (copy_to_user(utp, &tx32, sizeof(struct compat_timex)))
91                 return -EFAULT;
92         return 0;
93 }
94
95 COMPAT_SYSCALL_DEFINE2(gettimeofday, struct compat_timeval __user *, tv,
96                        struct timezone __user *, tz)
97 {
98         if (tv) {
99                 struct timeval ktv;
100                 do_gettimeofday(&ktv);
101                 if (compat_put_timeval(&ktv, tv))
102                         return -EFAULT;
103         }
104         if (tz) {
105                 if (copy_to_user(tz, &sys_tz, sizeof(sys_tz)))
106                         return -EFAULT;
107         }
108
109         return 0;
110 }
111
112 COMPAT_SYSCALL_DEFINE2(settimeofday, struct compat_timeval __user *, tv,
113                        struct timezone __user *, tz)
114 {
115         struct timespec64 new_ts;
116         struct timeval user_tv;
117         struct timezone new_tz;
118
119         if (tv) {
120                 if (compat_get_timeval(&user_tv, tv))
121                         return -EFAULT;
122                 new_ts.tv_sec = user_tv.tv_sec;
123                 new_ts.tv_nsec = user_tv.tv_usec * NSEC_PER_USEC;
124         }
125         if (tz) {
126                 if (copy_from_user(&new_tz, tz, sizeof(*tz)))
127                         return -EFAULT;
128         }
129
130         return do_sys_settimeofday64(tv ? &new_ts : NULL, tz ? &new_tz : NULL);
131 }
132
133 static int __compat_get_timeval(struct timeval *tv, const struct compat_timeval __user *ctv)
134 {
135         return (!access_ok(VERIFY_READ, ctv, sizeof(*ctv)) ||
136                         __get_user(tv->tv_sec, &ctv->tv_sec) ||
137                         __get_user(tv->tv_usec, &ctv->tv_usec)) ? -EFAULT : 0;
138 }
139
140 static int __compat_put_timeval(const struct timeval *tv, struct compat_timeval __user *ctv)
141 {
142         return (!access_ok(VERIFY_WRITE, ctv, sizeof(*ctv)) ||
143                         __put_user(tv->tv_sec, &ctv->tv_sec) ||
144                         __put_user(tv->tv_usec, &ctv->tv_usec)) ? -EFAULT : 0;
145 }
146
147 static int __compat_get_timespec(struct timespec *ts, const struct compat_timespec __user *cts)
148 {
149         return (!access_ok(VERIFY_READ, cts, sizeof(*cts)) ||
150                         __get_user(ts->tv_sec, &cts->tv_sec) ||
151                         __get_user(ts->tv_nsec, &cts->tv_nsec)) ? -EFAULT : 0;
152 }
153
154 static int __compat_put_timespec(const struct timespec *ts, struct compat_timespec __user *cts)
155 {
156         return (!access_ok(VERIFY_WRITE, cts, sizeof(*cts)) ||
157                         __put_user(ts->tv_sec, &cts->tv_sec) ||
158                         __put_user(ts->tv_nsec, &cts->tv_nsec)) ? -EFAULT : 0;
159 }
160
161 int compat_get_timeval(struct timeval *tv, const void __user *utv)
162 {
163         if (COMPAT_USE_64BIT_TIME)
164                 return copy_from_user(tv, utv, sizeof(*tv)) ? -EFAULT : 0;
165         else
166                 return __compat_get_timeval(tv, utv);
167 }
168 EXPORT_SYMBOL_GPL(compat_get_timeval);
169
170 int compat_put_timeval(const struct timeval *tv, void __user *utv)
171 {
172         if (COMPAT_USE_64BIT_TIME)
173                 return copy_to_user(utv, tv, sizeof(*tv)) ? -EFAULT : 0;
174         else
175                 return __compat_put_timeval(tv, utv);
176 }
177 EXPORT_SYMBOL_GPL(compat_put_timeval);
178
179 int compat_get_timespec(struct timespec *ts, const void __user *uts)
180 {
181         if (COMPAT_USE_64BIT_TIME)
182                 return copy_from_user(ts, uts, sizeof(*ts)) ? -EFAULT : 0;
183         else
184                 return __compat_get_timespec(ts, uts);
185 }
186 EXPORT_SYMBOL_GPL(compat_get_timespec);
187
188 int compat_put_timespec(const struct timespec *ts, void __user *uts)
189 {
190         if (COMPAT_USE_64BIT_TIME)
191                 return copy_to_user(uts, ts, sizeof(*ts)) ? -EFAULT : 0;
192         else
193                 return __compat_put_timespec(ts, uts);
194 }
195 EXPORT_SYMBOL_GPL(compat_put_timespec);
196
197 int compat_convert_timespec(struct timespec __user **kts,
198                             const void __user *cts)
199 {
200         struct timespec ts;
201         struct timespec __user *uts;
202
203         if (!cts || COMPAT_USE_64BIT_TIME) {
204                 *kts = (struct timespec __user *)cts;
205                 return 0;
206         }
207
208         uts = compat_alloc_user_space(sizeof(ts));
209         if (!uts)
210                 return -EFAULT;
211         if (compat_get_timespec(&ts, cts))
212                 return -EFAULT;
213         if (copy_to_user(uts, &ts, sizeof(ts)))
214                 return -EFAULT;
215
216         *kts = uts;
217         return 0;
218 }
219
220 int get_compat_itimerval(struct itimerval *o, const struct compat_itimerval __user *i)
221 {
222         struct compat_itimerval v32;
223
224         if (copy_from_user(&v32, i, sizeof(struct compat_itimerval)))
225                 return -EFAULT;
226         o->it_interval.tv_sec = v32.it_interval.tv_sec;
227         o->it_interval.tv_usec = v32.it_interval.tv_usec;
228         o->it_value.tv_sec = v32.it_value.tv_sec;
229         o->it_value.tv_usec = v32.it_value.tv_usec;
230         return 0;
231 }
232
233 int put_compat_itimerval(struct compat_itimerval __user *o, const struct itimerval *i)
234 {
235         struct compat_itimerval v32;
236
237         v32.it_interval.tv_sec = i->it_interval.tv_sec;
238         v32.it_interval.tv_usec = i->it_interval.tv_usec;
239         v32.it_value.tv_sec = i->it_value.tv_sec;
240         v32.it_value.tv_usec = i->it_value.tv_usec;
241         return copy_to_user(o, &v32, sizeof(struct compat_itimerval)) ? -EFAULT : 0;
242 }
243
244 static compat_clock_t clock_t_to_compat_clock_t(clock_t x)
245 {
246         return compat_jiffies_to_clock_t(clock_t_to_jiffies(x));
247 }
248
249 COMPAT_SYSCALL_DEFINE1(times, struct compat_tms __user *, tbuf)
250 {
251         if (tbuf) {
252                 struct tms tms;
253                 struct compat_tms tmp;
254
255                 do_sys_times(&tms);
256                 /* Convert our struct tms to the compat version. */
257                 tmp.tms_utime = clock_t_to_compat_clock_t(tms.tms_utime);
258                 tmp.tms_stime = clock_t_to_compat_clock_t(tms.tms_stime);
259                 tmp.tms_cutime = clock_t_to_compat_clock_t(tms.tms_cutime);
260                 tmp.tms_cstime = clock_t_to_compat_clock_t(tms.tms_cstime);
261                 if (copy_to_user(tbuf, &tmp, sizeof(tmp)))
262                         return -EFAULT;
263         }
264         force_successful_syscall_return();
265         return compat_jiffies_to_clock_t(jiffies);
266 }
267
268 #ifdef __ARCH_WANT_SYS_SIGPENDING
269
270 /*
271  * Assumption: old_sigset_t and compat_old_sigset_t are both
272  * types that can be passed to put_user()/get_user().
273  */
274
275 COMPAT_SYSCALL_DEFINE1(sigpending, compat_old_sigset_t __user *, set)
276 {
277         old_sigset_t s;
278         long ret;
279         mm_segment_t old_fs = get_fs();
280
281         set_fs(KERNEL_DS);
282         ret = sys_sigpending((old_sigset_t __user *) &s);
283         set_fs(old_fs);
284         if (ret == 0)
285                 ret = put_user(s, set);
286         return ret;
287 }
288
289 #endif
290
291 #ifdef __ARCH_WANT_SYS_SIGPROCMASK
292
293 /*
294  * sys_sigprocmask SIG_SETMASK sets the first (compat) word of the
295  * blocked set of signals to the supplied signal set
296  */
297 static inline void compat_sig_setmask(sigset_t *blocked, compat_sigset_word set)
298 {
299         memcpy(blocked->sig, &set, sizeof(set));
300 }
301
302 COMPAT_SYSCALL_DEFINE3(sigprocmask, int, how,
303                        compat_old_sigset_t __user *, nset,
304                        compat_old_sigset_t __user *, oset)
305 {
306         old_sigset_t old_set, new_set;
307         sigset_t new_blocked;
308
309         old_set = current->blocked.sig[0];
310
311         if (nset) {
312                 if (get_user(new_set, nset))
313                         return -EFAULT;
314                 new_set &= ~(sigmask(SIGKILL) | sigmask(SIGSTOP));
315
316                 new_blocked = current->blocked;
317
318                 switch (how) {
319                 case SIG_BLOCK:
320                         sigaddsetmask(&new_blocked, new_set);
321                         break;
322                 case SIG_UNBLOCK:
323                         sigdelsetmask(&new_blocked, new_set);
324                         break;
325                 case SIG_SETMASK:
326                         compat_sig_setmask(&new_blocked, new_set);
327                         break;
328                 default:
329                         return -EINVAL;
330                 }
331
332                 set_current_blocked(&new_blocked);
333         }
334
335         if (oset) {
336                 if (put_user(old_set, oset))
337                         return -EFAULT;
338         }
339
340         return 0;
341 }
342
343 #endif
344
345 COMPAT_SYSCALL_DEFINE2(setrlimit, unsigned int, resource,
346                        struct compat_rlimit __user *, rlim)
347 {
348         struct rlimit r;
349
350         if (!access_ok(VERIFY_READ, rlim, sizeof(*rlim)) ||
351             __get_user(r.rlim_cur, &rlim->rlim_cur) ||
352             __get_user(r.rlim_max, &rlim->rlim_max))
353                 return -EFAULT;
354
355         if (r.rlim_cur == COMPAT_RLIM_INFINITY)
356                 r.rlim_cur = RLIM_INFINITY;
357         if (r.rlim_max == COMPAT_RLIM_INFINITY)
358                 r.rlim_max = RLIM_INFINITY;
359         return do_prlimit(current, resource, &r, NULL);
360 }
361
362 #ifdef COMPAT_RLIM_OLD_INFINITY
363
364 COMPAT_SYSCALL_DEFINE2(old_getrlimit, unsigned int, resource,
365                        struct compat_rlimit __user *, rlim)
366 {
367         struct rlimit r;
368         int ret;
369         mm_segment_t old_fs = get_fs();
370
371         set_fs(KERNEL_DS);
372         ret = sys_old_getrlimit(resource, (struct rlimit __user *)&r);
373         set_fs(old_fs);
374
375         if (!ret) {
376                 if (r.rlim_cur > COMPAT_RLIM_OLD_INFINITY)
377                         r.rlim_cur = COMPAT_RLIM_INFINITY;
378                 if (r.rlim_max > COMPAT_RLIM_OLD_INFINITY)
379                         r.rlim_max = COMPAT_RLIM_INFINITY;
380
381                 if (!access_ok(VERIFY_WRITE, rlim, sizeof(*rlim)) ||
382                     __put_user(r.rlim_cur, &rlim->rlim_cur) ||
383                     __put_user(r.rlim_max, &rlim->rlim_max))
384                         return -EFAULT;
385         }
386         return ret;
387 }
388
389 #endif
390
391 COMPAT_SYSCALL_DEFINE2(getrlimit, unsigned int, resource,
392                        struct compat_rlimit __user *, rlim)
393 {
394         struct rlimit r;
395         int ret;
396
397         ret = do_prlimit(current, resource, NULL, &r);
398         if (!ret) {
399                 if (r.rlim_cur > COMPAT_RLIM_INFINITY)
400                         r.rlim_cur = COMPAT_RLIM_INFINITY;
401                 if (r.rlim_max > COMPAT_RLIM_INFINITY)
402                         r.rlim_max = COMPAT_RLIM_INFINITY;
403
404                 if (!access_ok(VERIFY_WRITE, rlim, sizeof(*rlim)) ||
405                     __put_user(r.rlim_cur, &rlim->rlim_cur) ||
406                     __put_user(r.rlim_max, &rlim->rlim_max))
407                         return -EFAULT;
408         }
409         return ret;
410 }
411
412 int put_compat_rusage(const struct rusage *r, struct compat_rusage __user *ru)
413 {
414         if (!access_ok(VERIFY_WRITE, ru, sizeof(*ru)) ||
415             __put_user(r->ru_utime.tv_sec, &ru->ru_utime.tv_sec) ||
416             __put_user(r->ru_utime.tv_usec, &ru->ru_utime.tv_usec) ||
417             __put_user(r->ru_stime.tv_sec, &ru->ru_stime.tv_sec) ||
418             __put_user(r->ru_stime.tv_usec, &ru->ru_stime.tv_usec) ||
419             __put_user(r->ru_maxrss, &ru->ru_maxrss) ||
420             __put_user(r->ru_ixrss, &ru->ru_ixrss) ||
421             __put_user(r->ru_idrss, &ru->ru_idrss) ||
422             __put_user(r->ru_isrss, &ru->ru_isrss) ||
423             __put_user(r->ru_minflt, &ru->ru_minflt) ||
424             __put_user(r->ru_majflt, &ru->ru_majflt) ||
425             __put_user(r->ru_nswap, &ru->ru_nswap) ||
426             __put_user(r->ru_inblock, &ru->ru_inblock) ||
427             __put_user(r->ru_oublock, &ru->ru_oublock) ||
428             __put_user(r->ru_msgsnd, &ru->ru_msgsnd) ||
429             __put_user(r->ru_msgrcv, &ru->ru_msgrcv) ||
430             __put_user(r->ru_nsignals, &ru->ru_nsignals) ||
431             __put_user(r->ru_nvcsw, &ru->ru_nvcsw) ||
432             __put_user(r->ru_nivcsw, &ru->ru_nivcsw))
433                 return -EFAULT;
434         return 0;
435 }
436
437 COMPAT_SYSCALL_DEFINE4(wait4,
438         compat_pid_t, pid,
439         compat_uint_t __user *, stat_addr,
440         int, options,
441         struct compat_rusage __user *, ru)
442 {
443         if (!ru) {
444                 return sys_wait4(pid, stat_addr, options, NULL);
445         } else {
446                 struct rusage r;
447                 int ret;
448                 unsigned int status;
449                 mm_segment_t old_fs = get_fs();
450
451                 set_fs (KERNEL_DS);
452                 ret = sys_wait4(pid,
453                                 (stat_addr ?
454                                  (unsigned int __user *) &status : NULL),
455                                 options, (struct rusage __user *) &r);
456                 set_fs (old_fs);
457
458                 if (ret > 0) {
459                         if (put_compat_rusage(&r, ru))
460                                 return -EFAULT;
461                         if (stat_addr && put_user(status, stat_addr))
462                                 return -EFAULT;
463                 }
464                 return ret;
465         }
466 }
467
468 COMPAT_SYSCALL_DEFINE5(waitid,
469                 int, which, compat_pid_t, pid,
470                 struct compat_siginfo __user *, uinfo, int, options,
471                 struct compat_rusage __user *, uru)
472 {
473         siginfo_t info;
474         struct rusage ru;
475         long ret;
476         mm_segment_t old_fs = get_fs();
477
478         memset(&info, 0, sizeof(info));
479
480         set_fs(KERNEL_DS);
481         ret = sys_waitid(which, pid, (siginfo_t __user *)&info, options,
482                          uru ? (struct rusage __user *)&ru : NULL);
483         set_fs(old_fs);
484
485         if ((ret < 0) || (info.si_signo == 0))
486                 return ret;
487
488         if (uru) {
489                 /* sys_waitid() overwrites everything in ru */
490                 if (COMPAT_USE_64BIT_TIME)
491                         ret = copy_to_user(uru, &ru, sizeof(ru));
492                 else
493                         ret = put_compat_rusage(&ru, uru);
494                 if (ret)
495                         return -EFAULT;
496         }
497
498         BUG_ON(info.si_code & __SI_MASK);
499         info.si_code |= __SI_CHLD;
500         return copy_siginfo_to_user32(uinfo, &info);
501 }
502
503 static int compat_get_user_cpu_mask(compat_ulong_t __user *user_mask_ptr,
504                                     unsigned len, struct cpumask *new_mask)
505 {
506         unsigned long *k;
507
508         if (len < cpumask_size())
509                 memset(new_mask, 0, cpumask_size());
510         else if (len > cpumask_size())
511                 len = cpumask_size();
512
513         k = cpumask_bits(new_mask);
514         return compat_get_bitmap(k, user_mask_ptr, len * 8);
515 }
516
517 COMPAT_SYSCALL_DEFINE3(sched_setaffinity, compat_pid_t, pid,
518                        unsigned int, len,
519                        compat_ulong_t __user *, user_mask_ptr)
520 {
521         cpumask_var_t new_mask;
522         int retval;
523
524         if (!alloc_cpumask_var(&new_mask, GFP_KERNEL))
525                 return -ENOMEM;
526
527         retval = compat_get_user_cpu_mask(user_mask_ptr, len, new_mask);
528         if (retval)
529                 goto out;
530
531         retval = sched_setaffinity(pid, new_mask);
532 out:
533         free_cpumask_var(new_mask);
534         return retval;
535 }
536
537 COMPAT_SYSCALL_DEFINE3(sched_getaffinity, compat_pid_t,  pid, unsigned int, len,
538                        compat_ulong_t __user *, user_mask_ptr)
539 {
540         int ret;
541         cpumask_var_t mask;
542
543         if ((len * BITS_PER_BYTE) < nr_cpu_ids)
544                 return -EINVAL;
545         if (len & (sizeof(compat_ulong_t)-1))
546                 return -EINVAL;
547
548         if (!alloc_cpumask_var(&mask, GFP_KERNEL))
549                 return -ENOMEM;
550
551         ret = sched_getaffinity(pid, mask);
552         if (ret == 0) {
553                 size_t retlen = min_t(size_t, len, cpumask_size());
554
555                 if (compat_put_bitmap(user_mask_ptr, cpumask_bits(mask), retlen * 8))
556                         ret = -EFAULT;
557                 else
558                         ret = retlen;
559         }
560         free_cpumask_var(mask);
561
562         return ret;
563 }
564
565 int get_compat_itimerspec(struct itimerspec *dst,
566                           const struct compat_itimerspec __user *src)
567 {
568         if (__compat_get_timespec(&dst->it_interval, &src->it_interval) ||
569             __compat_get_timespec(&dst->it_value, &src->it_value))
570                 return -EFAULT;
571         return 0;
572 }
573
574 int put_compat_itimerspec(struct compat_itimerspec __user *dst,
575                           const struct itimerspec *src)
576 {
577         if (__compat_put_timespec(&src->it_interval, &dst->it_interval) ||
578             __compat_put_timespec(&src->it_value, &dst->it_value))
579                 return -EFAULT;
580         return 0;
581 }
582
583 /*
584  * We currently only need the following fields from the sigevent
585  * structure: sigev_value, sigev_signo, sig_notify and (sometimes
586  * sigev_notify_thread_id).  The others are handled in user mode.
587  * We also assume that copying sigev_value.sival_int is sufficient
588  * to keep all the bits of sigev_value.sival_ptr intact.
589  */
590 int get_compat_sigevent(struct sigevent *event,
591                 const struct compat_sigevent __user *u_event)
592 {
593         memset(event, 0, sizeof(*event));
594         return (!access_ok(VERIFY_READ, u_event, sizeof(*u_event)) ||
595                 __get_user(event->sigev_value.sival_int,
596                         &u_event->sigev_value.sival_int) ||
597                 __get_user(event->sigev_signo, &u_event->sigev_signo) ||
598                 __get_user(event->sigev_notify, &u_event->sigev_notify) ||
599                 __get_user(event->sigev_notify_thread_id,
600                         &u_event->sigev_notify_thread_id))
601                 ? -EFAULT : 0;
602 }
603
604 long compat_get_bitmap(unsigned long *mask, const compat_ulong_t __user *umask,
605                        unsigned long bitmap_size)
606 {
607         int i, j;
608         unsigned long m;
609         compat_ulong_t um;
610         unsigned long nr_compat_longs;
611
612         /* align bitmap up to nearest compat_long_t boundary */
613         bitmap_size = ALIGN(bitmap_size, BITS_PER_COMPAT_LONG);
614
615         if (!access_ok(VERIFY_READ, umask, bitmap_size / 8))
616                 return -EFAULT;
617
618         nr_compat_longs = BITS_TO_COMPAT_LONGS(bitmap_size);
619
620         for (i = 0; i < BITS_TO_LONGS(bitmap_size); i++) {
621                 m = 0;
622
623                 for (j = 0; j < sizeof(m)/sizeof(um); j++) {
624                         /*
625                          * We dont want to read past the end of the userspace
626                          * bitmap. We must however ensure the end of the
627                          * kernel bitmap is zeroed.
628                          */
629                         if (nr_compat_longs) {
630                                 nr_compat_longs--;
631                                 if (__get_user(um, umask))
632                                         return -EFAULT;
633                         } else {
634                                 um = 0;
635                         }
636
637                         umask++;
638                         m |= (long)um << (j * BITS_PER_COMPAT_LONG);
639                 }
640                 *mask++ = m;
641         }
642
643         return 0;
644 }
645
646 long compat_put_bitmap(compat_ulong_t __user *umask, unsigned long *mask,
647                        unsigned long bitmap_size)
648 {
649         int i, j;
650         unsigned long m;
651         compat_ulong_t um;
652         unsigned long nr_compat_longs;
653
654         /* align bitmap up to nearest compat_long_t boundary */
655         bitmap_size = ALIGN(bitmap_size, BITS_PER_COMPAT_LONG);
656
657         if (!access_ok(VERIFY_WRITE, umask, bitmap_size / 8))
658                 return -EFAULT;
659
660         nr_compat_longs = BITS_TO_COMPAT_LONGS(bitmap_size);
661
662         for (i = 0; i < BITS_TO_LONGS(bitmap_size); i++) {
663                 m = *mask++;
664
665                 for (j = 0; j < sizeof(m)/sizeof(um); j++) {
666                         um = m;
667
668                         /*
669                          * We dont want to write past the end of the userspace
670                          * bitmap.
671                          */
672                         if (nr_compat_longs) {
673                                 nr_compat_longs--;
674                                 if (__put_user(um, umask))
675                                         return -EFAULT;
676                         }
677
678                         umask++;
679                         m >>= 4*sizeof(um);
680                         m >>= 4*sizeof(um);
681                 }
682         }
683
684         return 0;
685 }
686
687 void
688 sigset_from_compat(sigset_t *set, const compat_sigset_t *compat)
689 {
690         switch (_NSIG_WORDS) {
691         case 4: set->sig[3] = compat->sig[6] | (((long)compat->sig[7]) << 32 );
692         case 3: set->sig[2] = compat->sig[4] | (((long)compat->sig[5]) << 32 );
693         case 2: set->sig[1] = compat->sig[2] | (((long)compat->sig[3]) << 32 );
694         case 1: set->sig[0] = compat->sig[0] | (((long)compat->sig[1]) << 32 );
695         }
696 }
697 EXPORT_SYMBOL_GPL(sigset_from_compat);
698
699 void
700 sigset_to_compat(compat_sigset_t *compat, const sigset_t *set)
701 {
702         switch (_NSIG_WORDS) {
703         case 4: compat->sig[7] = (set->sig[3] >> 32); compat->sig[6] = set->sig[3];
704         case 3: compat->sig[5] = (set->sig[2] >> 32); compat->sig[4] = set->sig[2];
705         case 2: compat->sig[3] = (set->sig[1] >> 32); compat->sig[2] = set->sig[1];
706         case 1: compat->sig[1] = (set->sig[0] >> 32); compat->sig[0] = set->sig[0];
707         }
708 }
709
710 COMPAT_SYSCALL_DEFINE4(rt_sigtimedwait, compat_sigset_t __user *, uthese,
711                 struct compat_siginfo __user *, uinfo,
712                 struct compat_timespec __user *, uts, compat_size_t, sigsetsize)
713 {
714         compat_sigset_t s32;
715         sigset_t s;
716         struct timespec t;
717         siginfo_t info;
718         long ret;
719
720         if (sigsetsize != sizeof(sigset_t))
721                 return -EINVAL;
722
723         if (copy_from_user(&s32, uthese, sizeof(compat_sigset_t)))
724                 return -EFAULT;
725         sigset_from_compat(&s, &s32);
726
727         if (uts) {
728                 if (compat_get_timespec(&t, uts))
729                         return -EFAULT;
730         }
731
732         ret = do_sigtimedwait(&s, &info, uts ? &t : NULL);
733
734         if (ret > 0 && uinfo) {
735                 if (copy_siginfo_to_user32(uinfo, &info))
736                         ret = -EFAULT;
737         }
738
739         return ret;
740 }
741
742 #ifdef __ARCH_WANT_COMPAT_SYS_TIME
743
744 /* compat_time_t is a 32 bit "long" and needs to get converted. */
745
746 COMPAT_SYSCALL_DEFINE1(time, compat_time_t __user *, tloc)
747 {
748         compat_time_t i;
749         struct timeval tv;
750
751         do_gettimeofday(&tv);
752         i = tv.tv_sec;
753
754         if (tloc) {
755                 if (put_user(i,tloc))
756                         return -EFAULT;
757         }
758         force_successful_syscall_return();
759         return i;
760 }
761
762 COMPAT_SYSCALL_DEFINE1(stime, compat_time_t __user *, tptr)
763 {
764         struct timespec tv;
765         int err;
766
767         if (get_user(tv.tv_sec, tptr))
768                 return -EFAULT;
769
770         tv.tv_nsec = 0;
771
772         err = security_settime(&tv, NULL);
773         if (err)
774                 return err;
775
776         do_settimeofday(&tv);
777         return 0;
778 }
779
780 #endif /* __ARCH_WANT_COMPAT_SYS_TIME */
781
782 #ifdef CONFIG_NUMA
783 COMPAT_SYSCALL_DEFINE6(move_pages, pid_t, pid, compat_ulong_t, nr_pages,
784                        compat_uptr_t __user *, pages32,
785                        const int __user *, nodes,
786                        int __user *, status,
787                        int, flags)
788 {
789         const void __user * __user *pages;
790         int i;
791
792         pages = compat_alloc_user_space(nr_pages * sizeof(void *));
793         for (i = 0; i < nr_pages; i++) {
794                 compat_uptr_t p;
795
796                 if (get_user(p, pages32 + i) ||
797                         put_user(compat_ptr(p), pages + i))
798                         return -EFAULT;
799         }
800         return sys_move_pages(pid, nr_pages, pages, nodes, status, flags);
801 }
802
803 COMPAT_SYSCALL_DEFINE4(migrate_pages, compat_pid_t, pid,
804                        compat_ulong_t, maxnode,
805                        const compat_ulong_t __user *, old_nodes,
806                        const compat_ulong_t __user *, new_nodes)
807 {
808         unsigned long __user *old = NULL;
809         unsigned long __user *new = NULL;
810         nodemask_t tmp_mask;
811         unsigned long nr_bits;
812         unsigned long size;
813
814         nr_bits = min_t(unsigned long, maxnode - 1, MAX_NUMNODES);
815         size = ALIGN(nr_bits, BITS_PER_LONG) / 8;
816         if (old_nodes) {
817                 if (compat_get_bitmap(nodes_addr(tmp_mask), old_nodes, nr_bits))
818                         return -EFAULT;
819                 old = compat_alloc_user_space(new_nodes ? size * 2 : size);
820                 if (new_nodes)
821                         new = old + size / sizeof(unsigned long);
822                 if (copy_to_user(old, nodes_addr(tmp_mask), size))
823                         return -EFAULT;
824         }
825         if (new_nodes) {
826                 if (compat_get_bitmap(nodes_addr(tmp_mask), new_nodes, nr_bits))
827                         return -EFAULT;
828                 if (new == NULL)
829                         new = compat_alloc_user_space(size);
830                 if (copy_to_user(new, nodes_addr(tmp_mask), size))
831                         return -EFAULT;
832         }
833         return sys_migrate_pages(pid, nr_bits + 1, old, new);
834 }
835 #endif
836
837 COMPAT_SYSCALL_DEFINE2(sched_rr_get_interval,
838                        compat_pid_t, pid,
839                        struct compat_timespec __user *, interval)
840 {
841         struct timespec t;
842         int ret;
843         mm_segment_t old_fs = get_fs();
844
845         set_fs(KERNEL_DS);
846         ret = sys_sched_rr_get_interval(pid, (struct timespec __user *)&t);
847         set_fs(old_fs);
848         if (compat_put_timespec(&t, interval))
849                 return -EFAULT;
850         return ret;
851 }
852
853 /*
854  * Allocate user-space memory for the duration of a single system call,
855  * in order to marshall parameters inside a compat thunk.
856  */
857 void __user *compat_alloc_user_space(unsigned long len)
858 {
859         void __user *ptr;
860
861         /* If len would occupy more than half of the entire compat space... */
862         if (unlikely(len > (((compat_uptr_t)~0) >> 1)))
863                 return NULL;
864
865         ptr = arch_compat_alloc_user_space(len);
866
867         if (unlikely(!access_ok(VERIFY_WRITE, ptr, len)))
868                 return NULL;
869
870         return ptr;
871 }
872 EXPORT_SYMBOL_GPL(compat_alloc_user_space);