2 * linux/kernel/compat.c
4 * Kernel compatibililty routines for e.g. 32 bit syscall support
7 * Copyright (C) 2002-2003 Stephen Rothwell, IBM Corporation
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.
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>
31 #include <asm/uaccess.h>
34 * Get/set struct timeval with struct timespec on the native side
36 static int compat_get_timeval_convert(struct timespec
*o
,
37 struct compat_timeval __user
*i
)
41 if (get_user(o
->tv_sec
, &i
->tv_sec
) ||
42 get_user(usec
, &i
->tv_usec
))
44 o
->tv_nsec
= usec
* 1000;
48 static int compat_put_timeval_convert(struct compat_timeval __user
*o
,
51 return (put_user(i
->tv_sec
, &o
->tv_sec
) ||
52 put_user(i
->tv_usec
, &o
->tv_usec
)) ? -EFAULT
: 0;
55 static int compat_get_timex(struct timex
*txc
, struct compat_timex __user
*utp
)
57 memset(txc
, 0, sizeof(struct timex
));
59 if (!access_ok(VERIFY_READ
, utp
, sizeof(struct compat_timex
)) ||
60 __get_user(txc
->modes
, &utp
->modes
) ||
61 __get_user(txc
->offset
, &utp
->offset
) ||
62 __get_user(txc
->freq
, &utp
->freq
) ||
63 __get_user(txc
->maxerror
, &utp
->maxerror
) ||
64 __get_user(txc
->esterror
, &utp
->esterror
) ||
65 __get_user(txc
->status
, &utp
->status
) ||
66 __get_user(txc
->constant
, &utp
->constant
) ||
67 __get_user(txc
->precision
, &utp
->precision
) ||
68 __get_user(txc
->tolerance
, &utp
->tolerance
) ||
69 __get_user(txc
->time
.tv_sec
, &utp
->time
.tv_sec
) ||
70 __get_user(txc
->time
.tv_usec
, &utp
->time
.tv_usec
) ||
71 __get_user(txc
->tick
, &utp
->tick
) ||
72 __get_user(txc
->ppsfreq
, &utp
->ppsfreq
) ||
73 __get_user(txc
->jitter
, &utp
->jitter
) ||
74 __get_user(txc
->shift
, &utp
->shift
) ||
75 __get_user(txc
->stabil
, &utp
->stabil
) ||
76 __get_user(txc
->jitcnt
, &utp
->jitcnt
) ||
77 __get_user(txc
->calcnt
, &utp
->calcnt
) ||
78 __get_user(txc
->errcnt
, &utp
->errcnt
) ||
79 __get_user(txc
->stbcnt
, &utp
->stbcnt
))
85 static int compat_put_timex(struct compat_timex __user
*utp
, struct timex
*txc
)
87 if (!access_ok(VERIFY_WRITE
, utp
, sizeof(struct compat_timex
)) ||
88 __put_user(txc
->modes
, &utp
->modes
) ||
89 __put_user(txc
->offset
, &utp
->offset
) ||
90 __put_user(txc
->freq
, &utp
->freq
) ||
91 __put_user(txc
->maxerror
, &utp
->maxerror
) ||
92 __put_user(txc
->esterror
, &utp
->esterror
) ||
93 __put_user(txc
->status
, &utp
->status
) ||
94 __put_user(txc
->constant
, &utp
->constant
) ||
95 __put_user(txc
->precision
, &utp
->precision
) ||
96 __put_user(txc
->tolerance
, &utp
->tolerance
) ||
97 __put_user(txc
->time
.tv_sec
, &utp
->time
.tv_sec
) ||
98 __put_user(txc
->time
.tv_usec
, &utp
->time
.tv_usec
) ||
99 __put_user(txc
->tick
, &utp
->tick
) ||
100 __put_user(txc
->ppsfreq
, &utp
->ppsfreq
) ||
101 __put_user(txc
->jitter
, &utp
->jitter
) ||
102 __put_user(txc
->shift
, &utp
->shift
) ||
103 __put_user(txc
->stabil
, &utp
->stabil
) ||
104 __put_user(txc
->jitcnt
, &utp
->jitcnt
) ||
105 __put_user(txc
->calcnt
, &utp
->calcnt
) ||
106 __put_user(txc
->errcnt
, &utp
->errcnt
) ||
107 __put_user(txc
->stbcnt
, &utp
->stbcnt
) ||
108 __put_user(txc
->tai
, &utp
->tai
))
113 asmlinkage
long compat_sys_gettimeofday(struct compat_timeval __user
*tv
,
114 struct timezone __user
*tz
)
118 do_gettimeofday(&ktv
);
119 if (compat_put_timeval_convert(tv
, &ktv
))
123 if (copy_to_user(tz
, &sys_tz
, sizeof(sys_tz
)))
130 asmlinkage
long compat_sys_settimeofday(struct compat_timeval __user
*tv
,
131 struct timezone __user
*tz
)
137 if (compat_get_timeval_convert(&kts
, tv
))
141 if (copy_from_user(&ktz
, tz
, sizeof(ktz
)))
145 return do_sys_settimeofday(tv
? &kts
: NULL
, tz
? &ktz
: NULL
);
148 int get_compat_timeval(struct timeval
*tv
, const struct compat_timeval __user
*ctv
)
150 return (!access_ok(VERIFY_READ
, ctv
, sizeof(*ctv
)) ||
151 __get_user(tv
->tv_sec
, &ctv
->tv_sec
) ||
152 __get_user(tv
->tv_usec
, &ctv
->tv_usec
)) ? -EFAULT
: 0;
154 EXPORT_SYMBOL_GPL(get_compat_timeval
);
156 int put_compat_timeval(const struct timeval
*tv
, struct compat_timeval __user
*ctv
)
158 return (!access_ok(VERIFY_WRITE
, ctv
, sizeof(*ctv
)) ||
159 __put_user(tv
->tv_sec
, &ctv
->tv_sec
) ||
160 __put_user(tv
->tv_usec
, &ctv
->tv_usec
)) ? -EFAULT
: 0;
162 EXPORT_SYMBOL_GPL(put_compat_timeval
);
164 int get_compat_timespec(struct timespec
*ts
, const struct compat_timespec __user
*cts
)
166 return (!access_ok(VERIFY_READ
, cts
, sizeof(*cts
)) ||
167 __get_user(ts
->tv_sec
, &cts
->tv_sec
) ||
168 __get_user(ts
->tv_nsec
, &cts
->tv_nsec
)) ? -EFAULT
: 0;
170 EXPORT_SYMBOL_GPL(get_compat_timespec
);
172 int put_compat_timespec(const struct timespec
*ts
, struct compat_timespec __user
*cts
)
174 return (!access_ok(VERIFY_WRITE
, cts
, sizeof(*cts
)) ||
175 __put_user(ts
->tv_sec
, &cts
->tv_sec
) ||
176 __put_user(ts
->tv_nsec
, &cts
->tv_nsec
)) ? -EFAULT
: 0;
178 EXPORT_SYMBOL_GPL(put_compat_timespec
);
180 int compat_get_timeval(struct timeval
*tv
, const void __user
*utv
)
182 if (COMPAT_USE_64BIT_TIME
)
183 return copy_from_user(tv
, utv
, sizeof *tv
) ? -EFAULT
: 0;
185 return get_compat_timeval(tv
, utv
);
187 EXPORT_SYMBOL_GPL(compat_get_timeval
);
189 int compat_put_timeval(const struct timeval
*tv
, void __user
*utv
)
191 if (COMPAT_USE_64BIT_TIME
)
192 return copy_to_user(utv
, tv
, sizeof *tv
) ? -EFAULT
: 0;
194 return put_compat_timeval(tv
, utv
);
196 EXPORT_SYMBOL_GPL(compat_put_timeval
);
198 int compat_get_timespec(struct timespec
*ts
, const void __user
*uts
)
200 if (COMPAT_USE_64BIT_TIME
)
201 return copy_from_user(ts
, uts
, sizeof *ts
) ? -EFAULT
: 0;
203 return get_compat_timespec(ts
, uts
);
205 EXPORT_SYMBOL_GPL(compat_get_timespec
);
207 int compat_put_timespec(const struct timespec
*ts
, void __user
*uts
)
209 if (COMPAT_USE_64BIT_TIME
)
210 return copy_to_user(uts
, ts
, sizeof *ts
) ? -EFAULT
: 0;
212 return put_compat_timespec(ts
, uts
);
214 EXPORT_SYMBOL_GPL(compat_put_timespec
);
216 static long compat_nanosleep_restart(struct restart_block
*restart
)
218 struct compat_timespec __user
*rmtp
;
223 restart
->nanosleep
.rmtp
= (struct timespec __user
*) &rmt
;
226 ret
= hrtimer_nanosleep_restart(restart
);
230 rmtp
= restart
->nanosleep
.compat_rmtp
;
232 if (rmtp
&& put_compat_timespec(&rmt
, rmtp
))
239 asmlinkage
long compat_sys_nanosleep(struct compat_timespec __user
*rqtp
,
240 struct compat_timespec __user
*rmtp
)
242 struct timespec tu
, rmt
;
246 if (get_compat_timespec(&tu
, rqtp
))
249 if (!timespec_valid(&tu
))
254 ret
= hrtimer_nanosleep(&tu
,
255 rmtp
? (struct timespec __user
*)&rmt
: NULL
,
256 HRTIMER_MODE_REL
, CLOCK_MONOTONIC
);
260 struct restart_block
*restart
261 = ¤t_thread_info()->restart_block
;
263 restart
->fn
= compat_nanosleep_restart
;
264 restart
->nanosleep
.compat_rmtp
= rmtp
;
266 if (rmtp
&& put_compat_timespec(&rmt
, rmtp
))
273 static inline long get_compat_itimerval(struct itimerval
*o
,
274 struct compat_itimerval __user
*i
)
276 return (!access_ok(VERIFY_READ
, i
, sizeof(*i
)) ||
277 (__get_user(o
->it_interval
.tv_sec
, &i
->it_interval
.tv_sec
) |
278 __get_user(o
->it_interval
.tv_usec
, &i
->it_interval
.tv_usec
) |
279 __get_user(o
->it_value
.tv_sec
, &i
->it_value
.tv_sec
) |
280 __get_user(o
->it_value
.tv_usec
, &i
->it_value
.tv_usec
)));
283 static inline long put_compat_itimerval(struct compat_itimerval __user
*o
,
286 return (!access_ok(VERIFY_WRITE
, o
, sizeof(*o
)) ||
287 (__put_user(i
->it_interval
.tv_sec
, &o
->it_interval
.tv_sec
) |
288 __put_user(i
->it_interval
.tv_usec
, &o
->it_interval
.tv_usec
) |
289 __put_user(i
->it_value
.tv_sec
, &o
->it_value
.tv_sec
) |
290 __put_user(i
->it_value
.tv_usec
, &o
->it_value
.tv_usec
)));
293 asmlinkage
long compat_sys_getitimer(int which
,
294 struct compat_itimerval __user
*it
)
296 struct itimerval kit
;
299 error
= do_getitimer(which
, &kit
);
300 if (!error
&& put_compat_itimerval(it
, &kit
))
305 asmlinkage
long compat_sys_setitimer(int which
,
306 struct compat_itimerval __user
*in
,
307 struct compat_itimerval __user
*out
)
309 struct itimerval kin
, kout
;
313 if (get_compat_itimerval(&kin
, in
))
316 memset(&kin
, 0, sizeof(kin
));
318 error
= do_setitimer(which
, &kin
, out
? &kout
: NULL
);
321 if (put_compat_itimerval(out
, &kout
))
326 static compat_clock_t
clock_t_to_compat_clock_t(clock_t x
)
328 return compat_jiffies_to_clock_t(clock_t_to_jiffies(x
));
331 asmlinkage
long compat_sys_times(struct compat_tms __user
*tbuf
)
335 struct compat_tms tmp
;
338 /* Convert our struct tms to the compat version. */
339 tmp
.tms_utime
= clock_t_to_compat_clock_t(tms
.tms_utime
);
340 tmp
.tms_stime
= clock_t_to_compat_clock_t(tms
.tms_stime
);
341 tmp
.tms_cutime
= clock_t_to_compat_clock_t(tms
.tms_cutime
);
342 tmp
.tms_cstime
= clock_t_to_compat_clock_t(tms
.tms_cstime
);
343 if (copy_to_user(tbuf
, &tmp
, sizeof(tmp
)))
346 force_successful_syscall_return();
347 return compat_jiffies_to_clock_t(jiffies
);
350 #ifdef __ARCH_WANT_SYS_SIGPENDING
353 * Assumption: old_sigset_t and compat_old_sigset_t are both
354 * types that can be passed to put_user()/get_user().
357 asmlinkage
long compat_sys_sigpending(compat_old_sigset_t __user
*set
)
361 mm_segment_t old_fs
= get_fs();
364 ret
= sys_sigpending((old_sigset_t __user
*) &s
);
367 ret
= put_user(s
, set
);
373 #ifdef __ARCH_WANT_SYS_SIGPROCMASK
376 * sys_sigprocmask SIG_SETMASK sets the first (compat) word of the
377 * blocked set of signals to the supplied signal set
379 static inline void compat_sig_setmask(sigset_t
*blocked
, compat_sigset_word set
)
381 memcpy(blocked
->sig
, &set
, sizeof(set
));
384 asmlinkage
long compat_sys_sigprocmask(int how
,
385 compat_old_sigset_t __user
*nset
,
386 compat_old_sigset_t __user
*oset
)
388 old_sigset_t old_set
, new_set
;
389 sigset_t new_blocked
;
391 old_set
= current
->blocked
.sig
[0];
394 if (get_user(new_set
, nset
))
396 new_set
&= ~(sigmask(SIGKILL
) | sigmask(SIGSTOP
));
398 new_blocked
= current
->blocked
;
402 sigaddsetmask(&new_blocked
, new_set
);
405 sigdelsetmask(&new_blocked
, new_set
);
408 compat_sig_setmask(&new_blocked
, new_set
);
414 set_current_blocked(&new_blocked
);
418 if (put_user(old_set
, oset
))
427 asmlinkage
long compat_sys_setrlimit(unsigned int resource
,
428 struct compat_rlimit __user
*rlim
)
432 if (!access_ok(VERIFY_READ
, rlim
, sizeof(*rlim
)) ||
433 __get_user(r
.rlim_cur
, &rlim
->rlim_cur
) ||
434 __get_user(r
.rlim_max
, &rlim
->rlim_max
))
437 if (r
.rlim_cur
== COMPAT_RLIM_INFINITY
)
438 r
.rlim_cur
= RLIM_INFINITY
;
439 if (r
.rlim_max
== COMPAT_RLIM_INFINITY
)
440 r
.rlim_max
= RLIM_INFINITY
;
441 return do_prlimit(current
, resource
, &r
, NULL
);
444 #ifdef COMPAT_RLIM_OLD_INFINITY
446 asmlinkage
long compat_sys_old_getrlimit(unsigned int resource
,
447 struct compat_rlimit __user
*rlim
)
451 mm_segment_t old_fs
= get_fs();
454 ret
= sys_old_getrlimit(resource
, &r
);
458 if (r
.rlim_cur
> COMPAT_RLIM_OLD_INFINITY
)
459 r
.rlim_cur
= COMPAT_RLIM_INFINITY
;
460 if (r
.rlim_max
> COMPAT_RLIM_OLD_INFINITY
)
461 r
.rlim_max
= COMPAT_RLIM_INFINITY
;
463 if (!access_ok(VERIFY_WRITE
, rlim
, sizeof(*rlim
)) ||
464 __put_user(r
.rlim_cur
, &rlim
->rlim_cur
) ||
465 __put_user(r
.rlim_max
, &rlim
->rlim_max
))
473 asmlinkage
long compat_sys_getrlimit(unsigned int resource
,
474 struct compat_rlimit __user
*rlim
)
479 ret
= do_prlimit(current
, resource
, NULL
, &r
);
481 if (r
.rlim_cur
> COMPAT_RLIM_INFINITY
)
482 r
.rlim_cur
= COMPAT_RLIM_INFINITY
;
483 if (r
.rlim_max
> COMPAT_RLIM_INFINITY
)
484 r
.rlim_max
= COMPAT_RLIM_INFINITY
;
486 if (!access_ok(VERIFY_WRITE
, rlim
, sizeof(*rlim
)) ||
487 __put_user(r
.rlim_cur
, &rlim
->rlim_cur
) ||
488 __put_user(r
.rlim_max
, &rlim
->rlim_max
))
494 int put_compat_rusage(const struct rusage
*r
, struct compat_rusage __user
*ru
)
496 if (!access_ok(VERIFY_WRITE
, ru
, sizeof(*ru
)) ||
497 __put_user(r
->ru_utime
.tv_sec
, &ru
->ru_utime
.tv_sec
) ||
498 __put_user(r
->ru_utime
.tv_usec
, &ru
->ru_utime
.tv_usec
) ||
499 __put_user(r
->ru_stime
.tv_sec
, &ru
->ru_stime
.tv_sec
) ||
500 __put_user(r
->ru_stime
.tv_usec
, &ru
->ru_stime
.tv_usec
) ||
501 __put_user(r
->ru_maxrss
, &ru
->ru_maxrss
) ||
502 __put_user(r
->ru_ixrss
, &ru
->ru_ixrss
) ||
503 __put_user(r
->ru_idrss
, &ru
->ru_idrss
) ||
504 __put_user(r
->ru_isrss
, &ru
->ru_isrss
) ||
505 __put_user(r
->ru_minflt
, &ru
->ru_minflt
) ||
506 __put_user(r
->ru_majflt
, &ru
->ru_majflt
) ||
507 __put_user(r
->ru_nswap
, &ru
->ru_nswap
) ||
508 __put_user(r
->ru_inblock
, &ru
->ru_inblock
) ||
509 __put_user(r
->ru_oublock
, &ru
->ru_oublock
) ||
510 __put_user(r
->ru_msgsnd
, &ru
->ru_msgsnd
) ||
511 __put_user(r
->ru_msgrcv
, &ru
->ru_msgrcv
) ||
512 __put_user(r
->ru_nsignals
, &ru
->ru_nsignals
) ||
513 __put_user(r
->ru_nvcsw
, &ru
->ru_nvcsw
) ||
514 __put_user(r
->ru_nivcsw
, &ru
->ru_nivcsw
))
519 asmlinkage
long compat_sys_getrusage(int who
, struct compat_rusage __user
*ru
)
523 mm_segment_t old_fs
= get_fs();
526 ret
= sys_getrusage(who
, (struct rusage __user
*) &r
);
532 if (put_compat_rusage(&r
, ru
))
538 COMPAT_SYSCALL_DEFINE4(wait4
,
540 compat_uint_t __user
*, stat_addr
,
542 struct compat_rusage __user
*, ru
)
545 return sys_wait4(pid
, stat_addr
, options
, NULL
);
550 mm_segment_t old_fs
= get_fs();
555 (unsigned int __user
*) &status
: NULL
),
556 options
, (struct rusage __user
*) &r
);
560 if (put_compat_rusage(&r
, ru
))
562 if (stat_addr
&& put_user(status
, stat_addr
))
569 COMPAT_SYSCALL_DEFINE5(waitid
,
570 int, which
, compat_pid_t
, pid
,
571 struct compat_siginfo __user
*, uinfo
, int, options
,
572 struct compat_rusage __user
*, uru
)
577 mm_segment_t old_fs
= get_fs();
579 memset(&info
, 0, sizeof(info
));
582 ret
= sys_waitid(which
, pid
, (siginfo_t __user
*)&info
, options
,
583 uru
? (struct rusage __user
*)&ru
: NULL
);
586 if ((ret
< 0) || (info
.si_signo
== 0))
590 /* sys_waitid() overwrites everything in ru */
591 if (COMPAT_USE_64BIT_TIME
)
592 ret
= copy_to_user(uru
, &ru
, sizeof(ru
));
594 ret
= put_compat_rusage(&ru
, uru
);
599 BUG_ON(info
.si_code
& __SI_MASK
);
600 info
.si_code
|= __SI_CHLD
;
601 return copy_siginfo_to_user32(uinfo
, &info
);
604 static int compat_get_user_cpu_mask(compat_ulong_t __user
*user_mask_ptr
,
605 unsigned len
, struct cpumask
*new_mask
)
609 if (len
< cpumask_size())
610 memset(new_mask
, 0, cpumask_size());
611 else if (len
> cpumask_size())
612 len
= cpumask_size();
614 k
= cpumask_bits(new_mask
);
615 return compat_get_bitmap(k
, user_mask_ptr
, len
* 8);
618 asmlinkage
long compat_sys_sched_setaffinity(compat_pid_t pid
,
620 compat_ulong_t __user
*user_mask_ptr
)
622 cpumask_var_t new_mask
;
625 if (!alloc_cpumask_var(&new_mask
, GFP_KERNEL
))
628 retval
= compat_get_user_cpu_mask(user_mask_ptr
, len
, new_mask
);
632 retval
= sched_setaffinity(pid
, new_mask
);
634 free_cpumask_var(new_mask
);
638 asmlinkage
long compat_sys_sched_getaffinity(compat_pid_t pid
, unsigned int len
,
639 compat_ulong_t __user
*user_mask_ptr
)
644 if ((len
* BITS_PER_BYTE
) < nr_cpu_ids
)
646 if (len
& (sizeof(compat_ulong_t
)-1))
649 if (!alloc_cpumask_var(&mask
, GFP_KERNEL
))
652 ret
= sched_getaffinity(pid
, mask
);
654 size_t retlen
= min_t(size_t, len
, cpumask_size());
656 if (compat_put_bitmap(user_mask_ptr
, cpumask_bits(mask
), retlen
* 8))
661 free_cpumask_var(mask
);
666 int get_compat_itimerspec(struct itimerspec
*dst
,
667 const struct compat_itimerspec __user
*src
)
669 if (get_compat_timespec(&dst
->it_interval
, &src
->it_interval
) ||
670 get_compat_timespec(&dst
->it_value
, &src
->it_value
))
675 int put_compat_itimerspec(struct compat_itimerspec __user
*dst
,
676 const struct itimerspec
*src
)
678 if (put_compat_timespec(&src
->it_interval
, &dst
->it_interval
) ||
679 put_compat_timespec(&src
->it_value
, &dst
->it_value
))
684 long compat_sys_timer_create(clockid_t which_clock
,
685 struct compat_sigevent __user
*timer_event_spec
,
686 timer_t __user
*created_timer_id
)
688 struct sigevent __user
*event
= NULL
;
690 if (timer_event_spec
) {
691 struct sigevent kevent
;
693 event
= compat_alloc_user_space(sizeof(*event
));
694 if (get_compat_sigevent(&kevent
, timer_event_spec
) ||
695 copy_to_user(event
, &kevent
, sizeof(*event
)))
699 return sys_timer_create(which_clock
, event
, created_timer_id
);
702 long compat_sys_timer_settime(timer_t timer_id
, int flags
,
703 struct compat_itimerspec __user
*new,
704 struct compat_itimerspec __user
*old
)
708 struct itimerspec newts
, oldts
;
712 if (get_compat_itimerspec(&newts
, new))
716 err
= sys_timer_settime(timer_id
, flags
,
717 (struct itimerspec __user
*) &newts
,
718 (struct itimerspec __user
*) &oldts
);
720 if (!err
&& old
&& put_compat_itimerspec(old
, &oldts
))
725 long compat_sys_timer_gettime(timer_t timer_id
,
726 struct compat_itimerspec __user
*setting
)
730 struct itimerspec ts
;
734 err
= sys_timer_gettime(timer_id
,
735 (struct itimerspec __user
*) &ts
);
737 if (!err
&& put_compat_itimerspec(setting
, &ts
))
742 long compat_sys_clock_settime(clockid_t which_clock
,
743 struct compat_timespec __user
*tp
)
749 if (get_compat_timespec(&ts
, tp
))
753 err
= sys_clock_settime(which_clock
,
754 (struct timespec __user
*) &ts
);
759 long compat_sys_clock_gettime(clockid_t which_clock
,
760 struct compat_timespec __user
*tp
)
768 err
= sys_clock_gettime(which_clock
,
769 (struct timespec __user
*) &ts
);
771 if (!err
&& put_compat_timespec(&ts
, tp
))
776 long compat_sys_clock_adjtime(clockid_t which_clock
,
777 struct compat_timex __user
*utp
)
783 err
= compat_get_timex(&txc
, utp
);
789 ret
= sys_clock_adjtime(which_clock
, (struct timex __user
*) &txc
);
792 err
= compat_put_timex(utp
, &txc
);
799 long compat_sys_clock_getres(clockid_t which_clock
,
800 struct compat_timespec __user
*tp
)
808 err
= sys_clock_getres(which_clock
,
809 (struct timespec __user
*) &ts
);
811 if (!err
&& tp
&& put_compat_timespec(&ts
, tp
))
816 static long compat_clock_nanosleep_restart(struct restart_block
*restart
)
821 struct compat_timespec
*rmtp
= restart
->nanosleep
.compat_rmtp
;
823 restart
->nanosleep
.rmtp
= (struct timespec __user
*) &tu
;
826 err
= clock_nanosleep_restart(restart
);
829 if ((err
== -ERESTART_RESTARTBLOCK
) && rmtp
&&
830 put_compat_timespec(&tu
, rmtp
))
833 if (err
== -ERESTART_RESTARTBLOCK
) {
834 restart
->fn
= compat_clock_nanosleep_restart
;
835 restart
->nanosleep
.compat_rmtp
= rmtp
;
840 long compat_sys_clock_nanosleep(clockid_t which_clock
, int flags
,
841 struct compat_timespec __user
*rqtp
,
842 struct compat_timespec __user
*rmtp
)
846 struct timespec in
, out
;
847 struct restart_block
*restart
;
849 if (get_compat_timespec(&in
, rqtp
))
854 err
= sys_clock_nanosleep(which_clock
, flags
,
855 (struct timespec __user
*) &in
,
856 (struct timespec __user
*) &out
);
859 if ((err
== -ERESTART_RESTARTBLOCK
) && rmtp
&&
860 put_compat_timespec(&out
, rmtp
))
863 if (err
== -ERESTART_RESTARTBLOCK
) {
864 restart
= ¤t_thread_info()->restart_block
;
865 restart
->fn
= compat_clock_nanosleep_restart
;
866 restart
->nanosleep
.compat_rmtp
= rmtp
;
872 * We currently only need the following fields from the sigevent
873 * structure: sigev_value, sigev_signo, sig_notify and (sometimes
874 * sigev_notify_thread_id). The others are handled in user mode.
875 * We also assume that copying sigev_value.sival_int is sufficient
876 * to keep all the bits of sigev_value.sival_ptr intact.
878 int get_compat_sigevent(struct sigevent
*event
,
879 const struct compat_sigevent __user
*u_event
)
881 memset(event
, 0, sizeof(*event
));
882 return (!access_ok(VERIFY_READ
, u_event
, sizeof(*u_event
)) ||
883 __get_user(event
->sigev_value
.sival_int
,
884 &u_event
->sigev_value
.sival_int
) ||
885 __get_user(event
->sigev_signo
, &u_event
->sigev_signo
) ||
886 __get_user(event
->sigev_notify
, &u_event
->sigev_notify
) ||
887 __get_user(event
->sigev_notify_thread_id
,
888 &u_event
->sigev_notify_thread_id
))
892 long compat_get_bitmap(unsigned long *mask
, const compat_ulong_t __user
*umask
,
893 unsigned long bitmap_size
)
898 unsigned long nr_compat_longs
;
900 /* align bitmap up to nearest compat_long_t boundary */
901 bitmap_size
= ALIGN(bitmap_size
, BITS_PER_COMPAT_LONG
);
903 if (!access_ok(VERIFY_READ
, umask
, bitmap_size
/ 8))
906 nr_compat_longs
= BITS_TO_COMPAT_LONGS(bitmap_size
);
908 for (i
= 0; i
< BITS_TO_LONGS(bitmap_size
); i
++) {
911 for (j
= 0; j
< sizeof(m
)/sizeof(um
); j
++) {
913 * We dont want to read past the end of the userspace
914 * bitmap. We must however ensure the end of the
915 * kernel bitmap is zeroed.
917 if (nr_compat_longs
-- > 0) {
918 if (__get_user(um
, umask
))
925 m
|= (long)um
<< (j
* BITS_PER_COMPAT_LONG
);
933 long compat_put_bitmap(compat_ulong_t __user
*umask
, unsigned long *mask
,
934 unsigned long bitmap_size
)
939 unsigned long nr_compat_longs
;
941 /* align bitmap up to nearest compat_long_t boundary */
942 bitmap_size
= ALIGN(bitmap_size
, BITS_PER_COMPAT_LONG
);
944 if (!access_ok(VERIFY_WRITE
, umask
, bitmap_size
/ 8))
947 nr_compat_longs
= BITS_TO_COMPAT_LONGS(bitmap_size
);
949 for (i
= 0; i
< BITS_TO_LONGS(bitmap_size
); i
++) {
952 for (j
= 0; j
< sizeof(m
)/sizeof(um
); j
++) {
956 * We dont want to write past the end of the userspace
959 if (nr_compat_longs
-- > 0) {
960 if (__put_user(um
, umask
))
974 sigset_from_compat (sigset_t
*set
, compat_sigset_t
*compat
)
976 switch (_NSIG_WORDS
) {
977 case 4: set
->sig
[3] = compat
->sig
[6] | (((long)compat
->sig
[7]) << 32 );
978 case 3: set
->sig
[2] = compat
->sig
[4] | (((long)compat
->sig
[5]) << 32 );
979 case 2: set
->sig
[1] = compat
->sig
[2] | (((long)compat
->sig
[3]) << 32 );
980 case 1: set
->sig
[0] = compat
->sig
[0] | (((long)compat
->sig
[1]) << 32 );
983 EXPORT_SYMBOL_GPL(sigset_from_compat
);
986 compat_sys_rt_sigtimedwait (compat_sigset_t __user
*uthese
,
987 struct compat_siginfo __user
*uinfo
,
988 struct compat_timespec __user
*uts
, compat_size_t sigsetsize
)
996 if (sigsetsize
!= sizeof(sigset_t
))
999 if (copy_from_user(&s32
, uthese
, sizeof(compat_sigset_t
)))
1001 sigset_from_compat(&s
, &s32
);
1004 if (compat_get_timespec(&t
, uts
))
1008 ret
= do_sigtimedwait(&s
, &info
, uts
? &t
: NULL
);
1010 if (ret
> 0 && uinfo
) {
1011 if (copy_siginfo_to_user32(uinfo
, &info
))
1020 compat_sys_rt_tgsigqueueinfo(compat_pid_t tgid
, compat_pid_t pid
, int sig
,
1021 struct compat_siginfo __user
*uinfo
)
1025 if (copy_siginfo_from_user32(&info
, uinfo
))
1027 return do_rt_tgsigqueueinfo(tgid
, pid
, sig
, &info
);
1030 #ifdef __ARCH_WANT_COMPAT_SYS_TIME
1032 /* compat_time_t is a 32 bit "long" and needs to get converted. */
1034 asmlinkage
long compat_sys_time(compat_time_t __user
* tloc
)
1039 do_gettimeofday(&tv
);
1043 if (put_user(i
,tloc
))
1046 force_successful_syscall_return();
1050 asmlinkage
long compat_sys_stime(compat_time_t __user
*tptr
)
1055 if (get_user(tv
.tv_sec
, tptr
))
1060 err
= security_settime(&tv
, NULL
);
1064 do_settimeofday(&tv
);
1068 #endif /* __ARCH_WANT_COMPAT_SYS_TIME */
1070 #ifdef __ARCH_WANT_COMPAT_SYS_RT_SIGSUSPEND
1071 asmlinkage
long compat_sys_rt_sigsuspend(compat_sigset_t __user
*unewset
, compat_size_t sigsetsize
)
1074 compat_sigset_t newset32
;
1076 /* XXX: Don't preclude handling different sized sigset_t's. */
1077 if (sigsetsize
!= sizeof(sigset_t
))
1080 if (copy_from_user(&newset32
, unewset
, sizeof(compat_sigset_t
)))
1082 sigset_from_compat(&newset
, &newset32
);
1083 return sigsuspend(&newset
);
1085 #endif /* __ARCH_WANT_COMPAT_SYS_RT_SIGSUSPEND */
1087 asmlinkage
long compat_sys_adjtimex(struct compat_timex __user
*utp
)
1092 err
= compat_get_timex(&txc
, utp
);
1096 ret
= do_adjtimex(&txc
);
1098 err
= compat_put_timex(utp
, &txc
);
1106 asmlinkage
long compat_sys_move_pages(pid_t pid
, unsigned long nr_pages
,
1107 compat_uptr_t __user
*pages32
,
1108 const int __user
*nodes
,
1112 const void __user
* __user
*pages
;
1115 pages
= compat_alloc_user_space(nr_pages
* sizeof(void *));
1116 for (i
= 0; i
< nr_pages
; i
++) {
1119 if (get_user(p
, pages32
+ i
) ||
1120 put_user(compat_ptr(p
), pages
+ i
))
1123 return sys_move_pages(pid
, nr_pages
, pages
, nodes
, status
, flags
);
1126 asmlinkage
long compat_sys_migrate_pages(compat_pid_t pid
,
1127 compat_ulong_t maxnode
,
1128 const compat_ulong_t __user
*old_nodes
,
1129 const compat_ulong_t __user
*new_nodes
)
1131 unsigned long __user
*old
= NULL
;
1132 unsigned long __user
*new = NULL
;
1133 nodemask_t tmp_mask
;
1134 unsigned long nr_bits
;
1137 nr_bits
= min_t(unsigned long, maxnode
- 1, MAX_NUMNODES
);
1138 size
= ALIGN(nr_bits
, BITS_PER_LONG
) / 8;
1140 if (compat_get_bitmap(nodes_addr(tmp_mask
), old_nodes
, nr_bits
))
1142 old
= compat_alloc_user_space(new_nodes
? size
* 2 : size
);
1144 new = old
+ size
/ sizeof(unsigned long);
1145 if (copy_to_user(old
, nodes_addr(tmp_mask
), size
))
1149 if (compat_get_bitmap(nodes_addr(tmp_mask
), new_nodes
, nr_bits
))
1152 new = compat_alloc_user_space(size
);
1153 if (copy_to_user(new, nodes_addr(tmp_mask
), size
))
1156 return sys_migrate_pages(pid
, nr_bits
+ 1, old
, new);
1160 struct compat_sysinfo
{
1174 char _f
[20-2*sizeof(u32
)-sizeof(int)];
1178 compat_sys_sysinfo(struct compat_sysinfo __user
*info
)
1184 /* Check to see if any memory value is too large for 32-bit and scale
1187 if ((s
.totalram
>> 32) || (s
.totalswap
>> 32)) {
1190 while (s
.mem_unit
< PAGE_SIZE
) {
1195 s
.totalram
>>= bitcount
;
1196 s
.freeram
>>= bitcount
;
1197 s
.sharedram
>>= bitcount
;
1198 s
.bufferram
>>= bitcount
;
1199 s
.totalswap
>>= bitcount
;
1200 s
.freeswap
>>= bitcount
;
1201 s
.totalhigh
>>= bitcount
;
1202 s
.freehigh
>>= bitcount
;
1205 if (!access_ok(VERIFY_WRITE
, info
, sizeof(struct compat_sysinfo
)) ||
1206 __put_user (s
.uptime
, &info
->uptime
) ||
1207 __put_user (s
.loads
[0], &info
->loads
[0]) ||
1208 __put_user (s
.loads
[1], &info
->loads
[1]) ||
1209 __put_user (s
.loads
[2], &info
->loads
[2]) ||
1210 __put_user (s
.totalram
, &info
->totalram
) ||
1211 __put_user (s
.freeram
, &info
->freeram
) ||
1212 __put_user (s
.sharedram
, &info
->sharedram
) ||
1213 __put_user (s
.bufferram
, &info
->bufferram
) ||
1214 __put_user (s
.totalswap
, &info
->totalswap
) ||
1215 __put_user (s
.freeswap
, &info
->freeswap
) ||
1216 __put_user (s
.procs
, &info
->procs
) ||
1217 __put_user (s
.totalhigh
, &info
->totalhigh
) ||
1218 __put_user (s
.freehigh
, &info
->freehigh
) ||
1219 __put_user (s
.mem_unit
, &info
->mem_unit
))
1225 #ifdef __ARCH_WANT_COMPAT_SYS_SCHED_RR_GET_INTERVAL
1226 asmlinkage
long compat_sys_sched_rr_get_interval(compat_pid_t pid
,
1227 struct compat_timespec __user
*interval
)
1231 mm_segment_t old_fs
= get_fs();
1234 ret
= sys_sched_rr_get_interval(pid
, (struct timespec __user
*)&t
);
1236 if (put_compat_timespec(&t
, interval
))
1240 #endif /* __ARCH_WANT_COMPAT_SYS_SCHED_RR_GET_INTERVAL */
1243 * Allocate user-space memory for the duration of a single system call,
1244 * in order to marshall parameters inside a compat thunk.
1246 void __user
*compat_alloc_user_space(unsigned long len
)
1250 /* If len would occupy more than half of the entire compat space... */
1251 if (unlikely(len
> (((compat_uptr_t
)~0) >> 1)))
1254 ptr
= arch_compat_alloc_user_space(len
);
1256 if (unlikely(!access_ok(VERIFY_WRITE
, ptr
, len
)))
1261 EXPORT_SYMBOL_GPL(compat_alloc_user_space
);