blob: 0770ac57c62b117f857ba8f0aaaeb5dc1d5ab80d [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
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 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include <linux/syscalls.h>
21#include <linux/unistd.h>
22#include <linux/security.h>
Stephen Rothwell3158e942006-03-26 01:37:29 -080023#include <linux/timex.h>
Paul Gortmaker6e5fdee2011-05-26 16:00:52 -040024#include <linux/export.h>
Christoph Lameter1b2db9f2006-06-23 02:03:56 -070025#include <linux/migrate.h>
Toyo Abe1711ef32006-09-29 02:00:28 -070026#include <linux/posix-timers.h>
Frank Mayharf06febc2008-09-12 09:54:39 -070027#include <linux/times.h>
Paul Mackerrase3d5a272009-01-06 14:41:02 -080028#include <linux/ptrace.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090029#include <linux/gfp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030
31#include <asm/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070032
Christoph Hellwigb418da12008-10-15 22:02:06 -070033/*
H. Peter Anvin6684ba22012-02-19 17:38:00 -080034 * Get/set struct timeval with struct timespec on the native side
Christoph Hellwigb418da12008-10-15 22:02:06 -070035 */
H. Peter Anvin6684ba22012-02-19 17:38:00 -080036static int compat_get_timeval_convert(struct timespec *o,
37 struct compat_timeval __user *i)
Christoph Hellwigb418da12008-10-15 22:02:06 -070038{
39 long usec;
40
41 if (get_user(o->tv_sec, &i->tv_sec) ||
42 get_user(usec, &i->tv_usec))
43 return -EFAULT;
44 o->tv_nsec = usec * 1000;
45 return 0;
46}
47
H. Peter Anvin6684ba22012-02-19 17:38:00 -080048static int compat_put_timeval_convert(struct compat_timeval __user *o,
49 struct timeval *i)
Christoph Hellwigb418da12008-10-15 22:02:06 -070050{
51 return (put_user(i->tv_sec, &o->tv_sec) ||
52 put_user(i->tv_usec, &o->tv_usec)) ? -EFAULT : 0;
53}
54
Richard Cochran65f5d802011-02-01 13:52:23 +000055static int compat_get_timex(struct timex *txc, struct compat_timex __user *utp)
56{
57 memset(txc, 0, sizeof(struct timex));
58
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))
80 return -EFAULT;
81
82 return 0;
83}
84
85static int compat_put_timex(struct compat_timex __user *utp, struct timex *txc)
86{
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))
109 return -EFAULT;
110 return 0;
111}
112
Christoph Hellwigb418da12008-10-15 22:02:06 -0700113asmlinkage long compat_sys_gettimeofday(struct compat_timeval __user *tv,
114 struct timezone __user *tz)
115{
116 if (tv) {
117 struct timeval ktv;
118 do_gettimeofday(&ktv);
H. Peter Anvin6684ba22012-02-19 17:38:00 -0800119 if (compat_put_timeval_convert(tv, &ktv))
Christoph Hellwigb418da12008-10-15 22:02:06 -0700120 return -EFAULT;
121 }
122 if (tz) {
123 if (copy_to_user(tz, &sys_tz, sizeof(sys_tz)))
124 return -EFAULT;
125 }
126
127 return 0;
128}
129
130asmlinkage long compat_sys_settimeofday(struct compat_timeval __user *tv,
131 struct timezone __user *tz)
132{
133 struct timespec kts;
134 struct timezone ktz;
135
136 if (tv) {
H. Peter Anvin6684ba22012-02-19 17:38:00 -0800137 if (compat_get_timeval_convert(&kts, tv))
Christoph Hellwigb418da12008-10-15 22:02:06 -0700138 return -EFAULT;
139 }
140 if (tz) {
141 if (copy_from_user(&ktz, tz, sizeof(ktz)))
142 return -EFAULT;
143 }
144
145 return do_sys_settimeofday(tv ? &kts : NULL, tz ? &ktz : NULL);
146}
147
H. Peter Anvin6684ba22012-02-19 17:38:00 -0800148int get_compat_timeval(struct timeval *tv, const struct compat_timeval __user *ctv)
149{
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;
153}
154EXPORT_SYMBOL_GPL(get_compat_timeval);
155
156int put_compat_timeval(const struct timeval *tv, struct compat_timeval __user *ctv)
157{
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;
161}
162EXPORT_SYMBOL_GPL(put_compat_timeval);
163
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164int get_compat_timespec(struct timespec *ts, const struct compat_timespec __user *cts)
165{
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;
169}
H. Peter Anvin6684ba22012-02-19 17:38:00 -0800170EXPORT_SYMBOL_GPL(get_compat_timespec);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171
172int put_compat_timespec(const struct timespec *ts, struct compat_timespec __user *cts)
173{
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;
177}
Hans Verkuil2330fb82011-06-07 11:43:57 -0300178EXPORT_SYMBOL_GPL(put_compat_timespec);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179
H. Peter Anvin6684ba22012-02-19 17:38:00 -0800180int compat_get_timeval(struct timeval *tv, const void __user *utv)
181{
182 if (COMPAT_USE_64BIT_TIME)
183 return copy_from_user(tv, utv, sizeof *tv) ? -EFAULT : 0;
184 else
185 return get_compat_timeval(tv, utv);
186}
187EXPORT_SYMBOL_GPL(compat_get_timeval);
188
189int compat_put_timeval(const struct timeval *tv, void __user *utv)
190{
191 if (COMPAT_USE_64BIT_TIME)
192 return copy_to_user(utv, tv, sizeof *tv) ? -EFAULT : 0;
193 else
194 return put_compat_timeval(tv, utv);
195}
196EXPORT_SYMBOL_GPL(compat_put_timeval);
197
198int compat_get_timespec(struct timespec *ts, const void __user *uts)
199{
200 if (COMPAT_USE_64BIT_TIME)
201 return copy_from_user(ts, uts, sizeof *ts) ? -EFAULT : 0;
202 else
203 return get_compat_timespec(ts, uts);
204}
205EXPORT_SYMBOL_GPL(compat_get_timespec);
206
207int compat_put_timespec(const struct timespec *ts, void __user *uts)
208{
209 if (COMPAT_USE_64BIT_TIME)
210 return copy_to_user(uts, ts, sizeof *ts) ? -EFAULT : 0;
211 else
212 return put_compat_timespec(ts, uts);
213}
214EXPORT_SYMBOL_GPL(compat_put_timespec);
215
Oleg Nesterov41652932008-02-01 20:35:31 +0300216static long compat_nanosleep_restart(struct restart_block *restart)
217{
218 struct compat_timespec __user *rmtp;
219 struct timespec rmt;
220 mm_segment_t oldfs;
221 long ret;
222
Thomas Gleixner029a07e2008-02-10 09:17:43 +0100223 restart->nanosleep.rmtp = (struct timespec __user *) &rmt;
Oleg Nesterov41652932008-02-01 20:35:31 +0300224 oldfs = get_fs();
225 set_fs(KERNEL_DS);
226 ret = hrtimer_nanosleep_restart(restart);
227 set_fs(oldfs);
228
229 if (ret) {
Thomas Gleixner029a07e2008-02-10 09:17:43 +0100230 rmtp = restart->nanosleep.compat_rmtp;
Oleg Nesterov41652932008-02-01 20:35:31 +0300231
232 if (rmtp && put_compat_timespec(&rmt, rmtp))
233 return -EFAULT;
234 }
235
236 return ret;
237}
238
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239asmlinkage long compat_sys_nanosleep(struct compat_timespec __user *rqtp,
Anton Blanchardc70878b2007-10-15 16:13:56 -0500240 struct compat_timespec __user *rmtp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241{
Anton Blanchardc70878b2007-10-15 16:13:56 -0500242 struct timespec tu, rmt;
Oleg Nesterov41652932008-02-01 20:35:31 +0300243 mm_segment_t oldfs;
Anton Blanchardc70878b2007-10-15 16:13:56 -0500244 long ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245
Anton Blanchardc70878b2007-10-15 16:13:56 -0500246 if (get_compat_timespec(&tu, rqtp))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 return -EFAULT;
248
Anton Blanchardc70878b2007-10-15 16:13:56 -0500249 if (!timespec_valid(&tu))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250 return -EINVAL;
251
Oleg Nesterov41652932008-02-01 20:35:31 +0300252 oldfs = get_fs();
253 set_fs(KERNEL_DS);
254 ret = hrtimer_nanosleep(&tu,
255 rmtp ? (struct timespec __user *)&rmt : NULL,
256 HRTIMER_MODE_REL, CLOCK_MONOTONIC);
257 set_fs(oldfs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258
Oleg Nesterov41652932008-02-01 20:35:31 +0300259 if (ret) {
260 struct restart_block *restart
261 = &current_thread_info()->restart_block;
262
263 restart->fn = compat_nanosleep_restart;
Thomas Gleixner029a07e2008-02-10 09:17:43 +0100264 restart->nanosleep.compat_rmtp = rmtp;
Oleg Nesterov41652932008-02-01 20:35:31 +0300265
266 if (rmtp && put_compat_timespec(&rmt, rmtp))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 return -EFAULT;
268 }
Anton Blanchardc70878b2007-10-15 16:13:56 -0500269
270 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271}
272
273static inline long get_compat_itimerval(struct itimerval *o,
274 struct compat_itimerval __user *i)
275{
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)));
281}
282
283static inline long put_compat_itimerval(struct compat_itimerval __user *o,
284 struct itimerval *i)
285{
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)));
291}
292
293asmlinkage long compat_sys_getitimer(int which,
294 struct compat_itimerval __user *it)
295{
296 struct itimerval kit;
297 int error;
298
299 error = do_getitimer(which, &kit);
300 if (!error && put_compat_itimerval(it, &kit))
301 error = -EFAULT;
302 return error;
303}
304
305asmlinkage long compat_sys_setitimer(int which,
306 struct compat_itimerval __user *in,
307 struct compat_itimerval __user *out)
308{
309 struct itimerval kin, kout;
310 int error;
311
312 if (in) {
313 if (get_compat_itimerval(&kin, in))
314 return -EFAULT;
315 } else
316 memset(&kin, 0, sizeof(kin));
317
318 error = do_setitimer(which, &kin, out ? &kout : NULL);
319 if (error || !out)
320 return error;
321 if (put_compat_itimerval(out, &kout))
322 return -EFAULT;
323 return 0;
324}
325
Frank Mayharf06febc2008-09-12 09:54:39 -0700326static compat_clock_t clock_t_to_compat_clock_t(clock_t x)
327{
328 return compat_jiffies_to_clock_t(clock_t_to_jiffies(x));
329}
330
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331asmlinkage long compat_sys_times(struct compat_tms __user *tbuf)
332{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333 if (tbuf) {
Frank Mayharf06febc2008-09-12 09:54:39 -0700334 struct tms tms;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335 struct compat_tms tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336
Frank Mayharf06febc2008-09-12 09:54:39 -0700337 do_sys_times(&tms);
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);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 if (copy_to_user(tbuf, &tmp, sizeof(tmp)))
344 return -EFAULT;
345 }
Paul Mackerrase3d5a272009-01-06 14:41:02 -0800346 force_successful_syscall_return();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347 return compat_jiffies_to_clock_t(jiffies);
348}
349
Chris Metcalfbe84cb42011-05-09 13:12:30 -0400350#ifdef __ARCH_WANT_SYS_SIGPENDING
351
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352/*
353 * Assumption: old_sigset_t and compat_old_sigset_t are both
354 * types that can be passed to put_user()/get_user().
355 */
356
357asmlinkage long compat_sys_sigpending(compat_old_sigset_t __user *set)
358{
359 old_sigset_t s;
360 long ret;
361 mm_segment_t old_fs = get_fs();
362
363 set_fs(KERNEL_DS);
364 ret = sys_sigpending((old_sigset_t __user *) &s);
365 set_fs(old_fs);
366 if (ret == 0)
367 ret = put_user(s, set);
368 return ret;
369}
370
Chris Metcalfbe84cb42011-05-09 13:12:30 -0400371#endif
372
373#ifdef __ARCH_WANT_SYS_SIGPROCMASK
374
Jan Kiszkab7dafa02012-05-10 10:04:36 -0300375/*
376 * sys_sigprocmask SIG_SETMASK sets the first (compat) word of the
377 * blocked set of signals to the supplied signal set
378 */
379static inline void compat_sig_setmask(sigset_t *blocked, compat_sigset_word set)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380{
Jan Kiszkab7dafa02012-05-10 10:04:36 -0300381 memcpy(blocked->sig, &set, sizeof(set));
382}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383
Jan Kiszkab7dafa02012-05-10 10:04:36 -0300384asmlinkage long compat_sys_sigprocmask(int how,
385 compat_old_sigset_t __user *nset,
386 compat_old_sigset_t __user *oset)
387{
388 old_sigset_t old_set, new_set;
389 sigset_t new_blocked;
390
391 old_set = current->blocked.sig[0];
392
393 if (nset) {
394 if (get_user(new_set, nset))
395 return -EFAULT;
396 new_set &= ~(sigmask(SIGKILL) | sigmask(SIGSTOP));
397
398 new_blocked = current->blocked;
399
400 switch (how) {
401 case SIG_BLOCK:
402 sigaddsetmask(&new_blocked, new_set);
403 break;
404 case SIG_UNBLOCK:
405 sigdelsetmask(&new_blocked, new_set);
406 break;
407 case SIG_SETMASK:
408 compat_sig_setmask(&new_blocked, new_set);
409 break;
410 default:
411 return -EINVAL;
412 }
413
414 set_current_blocked(&new_blocked);
415 }
416
417 if (oset) {
418 if (put_user(old_set, oset))
419 return -EFAULT;
420 }
421
422 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423}
424
Chris Metcalfbe84cb42011-05-09 13:12:30 -0400425#endif
426
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427asmlinkage long compat_sys_setrlimit(unsigned int resource,
428 struct compat_rlimit __user *rlim)
429{
430 struct rlimit r;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431
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))
435 return -EFAULT;
436
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;
Jiri Slabyb9518342010-05-04 11:28:25 +0200441 return do_prlimit(current, resource, &r, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442}
443
444#ifdef COMPAT_RLIM_OLD_INFINITY
445
446asmlinkage long compat_sys_old_getrlimit(unsigned int resource,
447 struct compat_rlimit __user *rlim)
448{
449 struct rlimit r;
450 int ret;
451 mm_segment_t old_fs = get_fs();
452
453 set_fs(KERNEL_DS);
454 ret = sys_old_getrlimit(resource, &r);
455 set_fs(old_fs);
456
457 if (!ret) {
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;
462
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))
466 return -EFAULT;
467 }
468 return ret;
469}
470
471#endif
472
Jiri Slabyb9518342010-05-04 11:28:25 +0200473asmlinkage long compat_sys_getrlimit(unsigned int resource,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474 struct compat_rlimit __user *rlim)
475{
476 struct rlimit r;
477 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478
Jiri Slabyb9518342010-05-04 11:28:25 +0200479 ret = do_prlimit(current, resource, NULL, &r);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480 if (!ret) {
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;
485
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))
489 return -EFAULT;
490 }
491 return ret;
492}
493
494int put_compat_rusage(const struct rusage *r, struct compat_rusage __user *ru)
495{
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))
515 return -EFAULT;
516 return 0;
517}
518
519asmlinkage long compat_sys_getrusage(int who, struct compat_rusage __user *ru)
520{
521 struct rusage r;
522 int ret;
523 mm_segment_t old_fs = get_fs();
524
525 set_fs(KERNEL_DS);
526 ret = sys_getrusage(who, (struct rusage __user *) &r);
527 set_fs(old_fs);
528
529 if (ret)
530 return ret;
531
532 if (put_compat_rusage(&r, ru))
533 return -EFAULT;
534
535 return 0;
536}
537
Al Viro8d9807b2012-12-23 14:56:40 -0500538COMPAT_SYSCALL_DEFINE4(wait4,
539 compat_pid_t, pid,
540 compat_uint_t __user *, stat_addr,
541 int, options,
542 struct compat_rusage __user *, ru)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543{
544 if (!ru) {
545 return sys_wait4(pid, stat_addr, options, NULL);
546 } else {
547 struct rusage r;
548 int ret;
549 unsigned int status;
550 mm_segment_t old_fs = get_fs();
551
552 set_fs (KERNEL_DS);
553 ret = sys_wait4(pid,
554 (stat_addr ?
555 (unsigned int __user *) &status : NULL),
556 options, (struct rusage __user *) &r);
557 set_fs (old_fs);
558
559 if (ret > 0) {
560 if (put_compat_rusage(&r, ru))
561 return -EFAULT;
562 if (stat_addr && put_user(status, stat_addr))
563 return -EFAULT;
564 }
565 return ret;
566 }
567}
568
Al Viro8d9807b2012-12-23 14:56:40 -0500569COMPAT_SYSCALL_DEFINE5(waitid,
570 int, which, compat_pid_t, pid,
571 struct compat_siginfo __user *, uinfo, int, options,
572 struct compat_rusage __user *, uru)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573{
574 siginfo_t info;
575 struct rusage ru;
576 long ret;
577 mm_segment_t old_fs = get_fs();
578
579 memset(&info, 0, sizeof(info));
580
581 set_fs(KERNEL_DS);
582 ret = sys_waitid(which, pid, (siginfo_t __user *)&info, options,
583 uru ? (struct rusage __user *)&ru : NULL);
584 set_fs(old_fs);
585
586 if ((ret < 0) || (info.si_signo == 0))
587 return ret;
588
589 if (uru) {
590 ret = put_compat_rusage(&ru, uru);
591 if (ret)
592 return ret;
593 }
594
595 BUG_ON(info.si_code & __SI_MASK);
596 info.si_code |= __SI_CHLD;
597 return copy_siginfo_to_user32(uinfo, &info);
598}
599
600static int compat_get_user_cpu_mask(compat_ulong_t __user *user_mask_ptr,
Rusty Russella45185d2009-01-01 10:12:24 +1030601 unsigned len, struct cpumask *new_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602{
603 unsigned long *k;
604
Rusty Russella45185d2009-01-01 10:12:24 +1030605 if (len < cpumask_size())
606 memset(new_mask, 0, cpumask_size());
607 else if (len > cpumask_size())
608 len = cpumask_size();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609
Rusty Russella45185d2009-01-01 10:12:24 +1030610 k = cpumask_bits(new_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611 return compat_get_bitmap(k, user_mask_ptr, len * 8);
612}
613
614asmlinkage long compat_sys_sched_setaffinity(compat_pid_t pid,
615 unsigned int len,
616 compat_ulong_t __user *user_mask_ptr)
617{
Rusty Russella45185d2009-01-01 10:12:24 +1030618 cpumask_var_t new_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619 int retval;
620
Rusty Russella45185d2009-01-01 10:12:24 +1030621 if (!alloc_cpumask_var(&new_mask, GFP_KERNEL))
622 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623
Rusty Russella45185d2009-01-01 10:12:24 +1030624 retval = compat_get_user_cpu_mask(user_mask_ptr, len, new_mask);
625 if (retval)
626 goto out;
627
628 retval = sched_setaffinity(pid, new_mask);
629out:
630 free_cpumask_var(new_mask);
631 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632}
633
634asmlinkage long compat_sys_sched_getaffinity(compat_pid_t pid, unsigned int len,
635 compat_ulong_t __user *user_mask_ptr)
636{
637 int ret;
Rusty Russella45185d2009-01-01 10:12:24 +1030638 cpumask_var_t mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639
KOSAKI Motohirofa9dc262010-05-19 09:37:41 +0900640 if ((len * BITS_PER_BYTE) < nr_cpu_ids)
641 return -EINVAL;
642 if (len & (sizeof(compat_ulong_t)-1))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643 return -EINVAL;
644
Rusty Russella45185d2009-01-01 10:12:24 +1030645 if (!alloc_cpumask_var(&mask, GFP_KERNEL))
646 return -ENOMEM;
647
648 ret = sched_getaffinity(pid, mask);
KOSAKI Motohirofa9dc262010-05-19 09:37:41 +0900649 if (ret == 0) {
650 size_t retlen = min_t(size_t, len, cpumask_size());
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651
KOSAKI Motohirofa9dc262010-05-19 09:37:41 +0900652 if (compat_put_bitmap(user_mask_ptr, cpumask_bits(mask), retlen * 8))
653 ret = -EFAULT;
654 else
655 ret = retlen;
656 }
Rusty Russella45185d2009-01-01 10:12:24 +1030657 free_cpumask_var(mask);
KOSAKI Motohirofa9dc262010-05-19 09:37:41 +0900658
Rusty Russella45185d2009-01-01 10:12:24 +1030659 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660}
661
Davide Libenzi83f5d122007-05-10 22:23:18 -0700662int get_compat_itimerspec(struct itimerspec *dst,
663 const struct compat_itimerspec __user *src)
Daniel Walkerbd3a8492007-10-18 03:06:09 -0700664{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665 if (get_compat_timespec(&dst->it_interval, &src->it_interval) ||
666 get_compat_timespec(&dst->it_value, &src->it_value))
667 return -EFAULT;
668 return 0;
Daniel Walkerbd3a8492007-10-18 03:06:09 -0700669}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670
Davide Libenzi83f5d122007-05-10 22:23:18 -0700671int put_compat_itimerspec(struct compat_itimerspec __user *dst,
672 const struct itimerspec *src)
Daniel Walkerbd3a8492007-10-18 03:06:09 -0700673{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674 if (put_compat_timespec(&src->it_interval, &dst->it_interval) ||
675 put_compat_timespec(&src->it_value, &dst->it_value))
676 return -EFAULT;
677 return 0;
Daniel Walkerbd3a8492007-10-18 03:06:09 -0700678}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679
Christoph Hellwig3a0f69d2006-01-09 20:52:08 -0800680long compat_sys_timer_create(clockid_t which_clock,
681 struct compat_sigevent __user *timer_event_spec,
682 timer_t __user *created_timer_id)
683{
684 struct sigevent __user *event = NULL;
685
686 if (timer_event_spec) {
687 struct sigevent kevent;
688
689 event = compat_alloc_user_space(sizeof(*event));
690 if (get_compat_sigevent(&kevent, timer_event_spec) ||
691 copy_to_user(event, &kevent, sizeof(*event)))
692 return -EFAULT;
693 }
694
695 return sys_timer_create(which_clock, event, created_timer_id);
696}
697
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698long compat_sys_timer_settime(timer_t timer_id, int flags,
Daniel Walkerbd3a8492007-10-18 03:06:09 -0700699 struct compat_itimerspec __user *new,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700 struct compat_itimerspec __user *old)
Daniel Walkerbd3a8492007-10-18 03:06:09 -0700701{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702 long err;
703 mm_segment_t oldfs;
704 struct itimerspec newts, oldts;
705
706 if (!new)
707 return -EINVAL;
708 if (get_compat_itimerspec(&newts, new))
Daniel Walkerbd3a8492007-10-18 03:06:09 -0700709 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710 oldfs = get_fs();
711 set_fs(KERNEL_DS);
712 err = sys_timer_settime(timer_id, flags,
713 (struct itimerspec __user *) &newts,
714 (struct itimerspec __user *) &oldts);
Daniel Walkerbd3a8492007-10-18 03:06:09 -0700715 set_fs(oldfs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716 if (!err && old && put_compat_itimerspec(old, &oldts))
717 return -EFAULT;
718 return err;
Daniel Walkerbd3a8492007-10-18 03:06:09 -0700719}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720
721long compat_sys_timer_gettime(timer_t timer_id,
722 struct compat_itimerspec __user *setting)
Daniel Walkerbd3a8492007-10-18 03:06:09 -0700723{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724 long err;
725 mm_segment_t oldfs;
Daniel Walkerbd3a8492007-10-18 03:06:09 -0700726 struct itimerspec ts;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727
728 oldfs = get_fs();
729 set_fs(KERNEL_DS);
730 err = sys_timer_gettime(timer_id,
Daniel Walkerbd3a8492007-10-18 03:06:09 -0700731 (struct itimerspec __user *) &ts);
732 set_fs(oldfs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733 if (!err && put_compat_itimerspec(setting, &ts))
734 return -EFAULT;
735 return err;
Daniel Walkerbd3a8492007-10-18 03:06:09 -0700736}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737
738long compat_sys_clock_settime(clockid_t which_clock,
739 struct compat_timespec __user *tp)
740{
741 long err;
742 mm_segment_t oldfs;
Daniel Walkerbd3a8492007-10-18 03:06:09 -0700743 struct timespec ts;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744
745 if (get_compat_timespec(&ts, tp))
Daniel Walkerbd3a8492007-10-18 03:06:09 -0700746 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747 oldfs = get_fs();
Daniel Walkerbd3a8492007-10-18 03:06:09 -0700748 set_fs(KERNEL_DS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749 err = sys_clock_settime(which_clock,
750 (struct timespec __user *) &ts);
751 set_fs(oldfs);
752 return err;
Daniel Walkerbd3a8492007-10-18 03:06:09 -0700753}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754
755long compat_sys_clock_gettime(clockid_t which_clock,
756 struct compat_timespec __user *tp)
757{
758 long err;
759 mm_segment_t oldfs;
Daniel Walkerbd3a8492007-10-18 03:06:09 -0700760 struct timespec ts;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761
762 oldfs = get_fs();
763 set_fs(KERNEL_DS);
764 err = sys_clock_gettime(which_clock,
765 (struct timespec __user *) &ts);
766 set_fs(oldfs);
767 if (!err && put_compat_timespec(&ts, tp))
Daniel Walkerbd3a8492007-10-18 03:06:09 -0700768 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769 return err;
Daniel Walkerbd3a8492007-10-18 03:06:09 -0700770}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771
Richard Cochranf1f1d5e2011-02-01 13:52:26 +0000772long compat_sys_clock_adjtime(clockid_t which_clock,
773 struct compat_timex __user *utp)
774{
775 struct timex txc;
776 mm_segment_t oldfs;
777 int err, ret;
778
779 err = compat_get_timex(&txc, utp);
780 if (err)
781 return err;
782
783 oldfs = get_fs();
784 set_fs(KERNEL_DS);
785 ret = sys_clock_adjtime(which_clock, (struct timex __user *) &txc);
786 set_fs(oldfs);
787
788 err = compat_put_timex(utp, &txc);
789 if (err)
790 return err;
791
792 return ret;
793}
794
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795long compat_sys_clock_getres(clockid_t which_clock,
796 struct compat_timespec __user *tp)
797{
798 long err;
799 mm_segment_t oldfs;
Daniel Walkerbd3a8492007-10-18 03:06:09 -0700800 struct timespec ts;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801
802 oldfs = get_fs();
803 set_fs(KERNEL_DS);
804 err = sys_clock_getres(which_clock,
805 (struct timespec __user *) &ts);
806 set_fs(oldfs);
807 if (!err && tp && put_compat_timespec(&ts, tp))
Daniel Walkerbd3a8492007-10-18 03:06:09 -0700808 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809 return err;
Daniel Walkerbd3a8492007-10-18 03:06:09 -0700810}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811
Toyo Abe1711ef32006-09-29 02:00:28 -0700812static long compat_clock_nanosleep_restart(struct restart_block *restart)
813{
814 long err;
815 mm_segment_t oldfs;
816 struct timespec tu;
Thomas Gleixner029a07e2008-02-10 09:17:43 +0100817 struct compat_timespec *rmtp = restart->nanosleep.compat_rmtp;
Toyo Abe1711ef32006-09-29 02:00:28 -0700818
Thomas Gleixner029a07e2008-02-10 09:17:43 +0100819 restart->nanosleep.rmtp = (struct timespec __user *) &tu;
Toyo Abe1711ef32006-09-29 02:00:28 -0700820 oldfs = get_fs();
821 set_fs(KERNEL_DS);
822 err = clock_nanosleep_restart(restart);
823 set_fs(oldfs);
824
825 if ((err == -ERESTART_RESTARTBLOCK) && rmtp &&
826 put_compat_timespec(&tu, rmtp))
827 return -EFAULT;
828
829 if (err == -ERESTART_RESTARTBLOCK) {
830 restart->fn = compat_clock_nanosleep_restart;
Thomas Gleixner029a07e2008-02-10 09:17:43 +0100831 restart->nanosleep.compat_rmtp = rmtp;
Toyo Abe1711ef32006-09-29 02:00:28 -0700832 }
833 return err;
834}
835
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836long compat_sys_clock_nanosleep(clockid_t which_clock, int flags,
837 struct compat_timespec __user *rqtp,
838 struct compat_timespec __user *rmtp)
839{
840 long err;
841 mm_segment_t oldfs;
Daniel Walkerbd3a8492007-10-18 03:06:09 -0700842 struct timespec in, out;
Toyo Abe1711ef32006-09-29 02:00:28 -0700843 struct restart_block *restart;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844
Daniel Walkerbd3a8492007-10-18 03:06:09 -0700845 if (get_compat_timespec(&in, rqtp))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846 return -EFAULT;
847
848 oldfs = get_fs();
849 set_fs(KERNEL_DS);
850 err = sys_clock_nanosleep(which_clock, flags,
851 (struct timespec __user *) &in,
852 (struct timespec __user *) &out);
853 set_fs(oldfs);
Toyo Abe1711ef32006-09-29 02:00:28 -0700854
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855 if ((err == -ERESTART_RESTARTBLOCK) && rmtp &&
856 put_compat_timespec(&out, rmtp))
857 return -EFAULT;
Toyo Abe1711ef32006-09-29 02:00:28 -0700858
859 if (err == -ERESTART_RESTARTBLOCK) {
860 restart = &current_thread_info()->restart_block;
861 restart->fn = compat_clock_nanosleep_restart;
Thomas Gleixner029a07e2008-02-10 09:17:43 +0100862 restart->nanosleep.compat_rmtp = rmtp;
Toyo Abe1711ef32006-09-29 02:00:28 -0700863 }
Daniel Walkerbd3a8492007-10-18 03:06:09 -0700864 return err;
865}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866
867/*
868 * We currently only need the following fields from the sigevent
869 * structure: sigev_value, sigev_signo, sig_notify and (sometimes
870 * sigev_notify_thread_id). The others are handled in user mode.
871 * We also assume that copying sigev_value.sival_int is sufficient
872 * to keep all the bits of sigev_value.sival_ptr intact.
873 */
874int get_compat_sigevent(struct sigevent *event,
875 const struct compat_sigevent __user *u_event)
876{
David S. Miller51410d32005-04-16 15:24:01 -0700877 memset(event, 0, sizeof(*event));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878 return (!access_ok(VERIFY_READ, u_event, sizeof(*u_event)) ||
879 __get_user(event->sigev_value.sival_int,
880 &u_event->sigev_value.sival_int) ||
881 __get_user(event->sigev_signo, &u_event->sigev_signo) ||
882 __get_user(event->sigev_notify, &u_event->sigev_notify) ||
883 __get_user(event->sigev_notify_thread_id,
884 &u_event->sigev_notify_thread_id))
885 ? -EFAULT : 0;
886}
887
Stephen Rothwell5fa38392006-10-28 10:38:46 -0700888long compat_get_bitmap(unsigned long *mask, const compat_ulong_t __user *umask,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889 unsigned long bitmap_size)
890{
891 int i, j;
892 unsigned long m;
893 compat_ulong_t um;
894 unsigned long nr_compat_longs;
895
896 /* align bitmap up to nearest compat_long_t boundary */
897 bitmap_size = ALIGN(bitmap_size, BITS_PER_COMPAT_LONG);
898
899 if (!access_ok(VERIFY_READ, umask, bitmap_size / 8))
900 return -EFAULT;
901
902 nr_compat_longs = BITS_TO_COMPAT_LONGS(bitmap_size);
903
904 for (i = 0; i < BITS_TO_LONGS(bitmap_size); i++) {
905 m = 0;
906
907 for (j = 0; j < sizeof(m)/sizeof(um); j++) {
908 /*
909 * We dont want to read past the end of the userspace
910 * bitmap. We must however ensure the end of the
911 * kernel bitmap is zeroed.
912 */
913 if (nr_compat_longs-- > 0) {
914 if (__get_user(um, umask))
915 return -EFAULT;
916 } else {
917 um = 0;
918 }
919
920 umask++;
921 m |= (long)um << (j * BITS_PER_COMPAT_LONG);
922 }
923 *mask++ = m;
924 }
925
926 return 0;
927}
928
929long compat_put_bitmap(compat_ulong_t __user *umask, unsigned long *mask,
930 unsigned long bitmap_size)
931{
932 int i, j;
933 unsigned long m;
934 compat_ulong_t um;
935 unsigned long nr_compat_longs;
936
937 /* align bitmap up to nearest compat_long_t boundary */
938 bitmap_size = ALIGN(bitmap_size, BITS_PER_COMPAT_LONG);
939
940 if (!access_ok(VERIFY_WRITE, umask, bitmap_size / 8))
941 return -EFAULT;
942
943 nr_compat_longs = BITS_TO_COMPAT_LONGS(bitmap_size);
944
945 for (i = 0; i < BITS_TO_LONGS(bitmap_size); i++) {
946 m = *mask++;
947
948 for (j = 0; j < sizeof(m)/sizeof(um); j++) {
949 um = m;
950
951 /*
952 * We dont want to write past the end of the userspace
953 * bitmap.
954 */
955 if (nr_compat_longs-- > 0) {
956 if (__put_user(um, umask))
957 return -EFAULT;
958 }
959
960 umask++;
961 m >>= 4*sizeof(um);
962 m >>= 4*sizeof(um);
963 }
964 }
965
966 return 0;
967}
968
969void
970sigset_from_compat (sigset_t *set, compat_sigset_t *compat)
971{
972 switch (_NSIG_WORDS) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973 case 4: set->sig[3] = compat->sig[6] | (((long)compat->sig[7]) << 32 );
974 case 3: set->sig[2] = compat->sig[4] | (((long)compat->sig[5]) << 32 );
975 case 2: set->sig[1] = compat->sig[2] | (((long)compat->sig[3]) << 32 );
976 case 1: set->sig[0] = compat->sig[0] | (((long)compat->sig[1]) << 32 );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977 }
978}
Alexander Graf1dda6062011-06-08 02:45:37 +0200979EXPORT_SYMBOL_GPL(sigset_from_compat);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980
981asmlinkage long
982compat_sys_rt_sigtimedwait (compat_sigset_t __user *uthese,
983 struct compat_siginfo __user *uinfo,
984 struct compat_timespec __user *uts, compat_size_t sigsetsize)
985{
986 compat_sigset_t s32;
987 sigset_t s;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988 struct timespec t;
989 siginfo_t info;
Oleg Nesterov943df142011-04-27 21:44:14 +0200990 long ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991
992 if (sigsetsize != sizeof(sigset_t))
993 return -EINVAL;
994
995 if (copy_from_user(&s32, uthese, sizeof(compat_sigset_t)))
996 return -EFAULT;
997 sigset_from_compat(&s, &s32);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998
999 if (uts) {
Oleg Nesterov943df142011-04-27 21:44:14 +02001000 if (get_compat_timespec(&t, uts))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002 }
1003
Oleg Nesterov943df142011-04-27 21:44:14 +02001004 ret = do_sigtimedwait(&s, &info, uts ? &t : NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005
Oleg Nesterov943df142011-04-27 21:44:14 +02001006 if (ret > 0 && uinfo) {
1007 if (copy_siginfo_to_user32(uinfo, &info))
1008 ret = -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011 return ret;
1012
1013}
1014
Thomas Gleixner62ab4502009-04-04 21:01:06 +00001015asmlinkage long
1016compat_sys_rt_tgsigqueueinfo(compat_pid_t tgid, compat_pid_t pid, int sig,
1017 struct compat_siginfo __user *uinfo)
1018{
1019 siginfo_t info;
1020
1021 if (copy_siginfo_from_user32(&info, uinfo))
1022 return -EFAULT;
1023 return do_rt_tgsigqueueinfo(tgid, pid, sig, &info);
1024}
1025
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026#ifdef __ARCH_WANT_COMPAT_SYS_TIME
1027
1028/* compat_time_t is a 32 bit "long" and needs to get converted. */
1029
1030asmlinkage long compat_sys_time(compat_time_t __user * tloc)
1031{
1032 compat_time_t i;
1033 struct timeval tv;
1034
1035 do_gettimeofday(&tv);
1036 i = tv.tv_sec;
1037
1038 if (tloc) {
1039 if (put_user(i,tloc))
Paul Mackerrase3d5a272009-01-06 14:41:02 -08001040 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041 }
Paul Mackerrase3d5a272009-01-06 14:41:02 -08001042 force_successful_syscall_return();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043 return i;
1044}
1045
1046asmlinkage long compat_sys_stime(compat_time_t __user *tptr)
1047{
1048 struct timespec tv;
1049 int err;
1050
1051 if (get_user(tv.tv_sec, tptr))
1052 return -EFAULT;
1053
1054 tv.tv_nsec = 0;
1055
1056 err = security_settime(&tv, NULL);
1057 if (err)
1058 return err;
1059
1060 do_settimeofday(&tv);
1061 return 0;
1062}
1063
1064#endif /* __ARCH_WANT_COMPAT_SYS_TIME */
David Woodhouse150256d2006-01-18 17:43:57 -08001065
1066#ifdef __ARCH_WANT_COMPAT_SYS_RT_SIGSUSPEND
1067asmlinkage long compat_sys_rt_sigsuspend(compat_sigset_t __user *unewset, compat_size_t sigsetsize)
1068{
1069 sigset_t newset;
1070 compat_sigset_t newset32;
1071
1072 /* XXX: Don't preclude handling different sized sigset_t's. */
1073 if (sigsetsize != sizeof(sigset_t))
1074 return -EINVAL;
1075
1076 if (copy_from_user(&newset32, unewset, sizeof(compat_sigset_t)))
1077 return -EFAULT;
1078 sigset_from_compat(&newset, &newset32);
Al Viro68f3f162012-05-21 21:42:32 -04001079 return sigsuspend(&newset);
David Woodhouse150256d2006-01-18 17:43:57 -08001080}
1081#endif /* __ARCH_WANT_COMPAT_SYS_RT_SIGSUSPEND */
Stephen Rothwell3158e942006-03-26 01:37:29 -08001082
1083asmlinkage long compat_sys_adjtimex(struct compat_timex __user *utp)
1084{
1085 struct timex txc;
Richard Cochran65f5d802011-02-01 13:52:23 +00001086 int err, ret;
Stephen Rothwell3158e942006-03-26 01:37:29 -08001087
Richard Cochran65f5d802011-02-01 13:52:23 +00001088 err = compat_get_timex(&txc, utp);
1089 if (err)
1090 return err;
Stephen Rothwell3158e942006-03-26 01:37:29 -08001091
1092 ret = do_adjtimex(&txc);
1093
Richard Cochran65f5d802011-02-01 13:52:23 +00001094 err = compat_put_timex(utp, &txc);
1095 if (err)
1096 return err;
Stephen Rothwell3158e942006-03-26 01:37:29 -08001097
1098 return ret;
1099}
Christoph Lameter1b2db9f2006-06-23 02:03:56 -07001100
1101#ifdef CONFIG_NUMA
1102asmlinkage long compat_sys_move_pages(pid_t pid, unsigned long nr_pages,
Christoph Lameter9216dfa2006-06-23 02:03:57 -07001103 compat_uptr_t __user *pages32,
Christoph Lameter1b2db9f2006-06-23 02:03:56 -07001104 const int __user *nodes,
1105 int __user *status,
1106 int flags)
1107{
1108 const void __user * __user *pages;
1109 int i;
1110
1111 pages = compat_alloc_user_space(nr_pages * sizeof(void *));
1112 for (i = 0; i < nr_pages; i++) {
1113 compat_uptr_t p;
1114
Christoph Lameter9216dfa2006-06-23 02:03:57 -07001115 if (get_user(p, pages32 + i) ||
Christoph Lameter1b2db9f2006-06-23 02:03:56 -07001116 put_user(compat_ptr(p), pages + i))
1117 return -EFAULT;
1118 }
1119 return sys_move_pages(pid, nr_pages, pages, nodes, status, flags);
1120}
Stephen Rothwell3fd59392006-11-02 22:07:24 -08001121
1122asmlinkage long compat_sys_migrate_pages(compat_pid_t pid,
1123 compat_ulong_t maxnode,
1124 const compat_ulong_t __user *old_nodes,
1125 const compat_ulong_t __user *new_nodes)
1126{
1127 unsigned long __user *old = NULL;
1128 unsigned long __user *new = NULL;
1129 nodemask_t tmp_mask;
1130 unsigned long nr_bits;
1131 unsigned long size;
1132
1133 nr_bits = min_t(unsigned long, maxnode - 1, MAX_NUMNODES);
1134 size = ALIGN(nr_bits, BITS_PER_LONG) / 8;
1135 if (old_nodes) {
1136 if (compat_get_bitmap(nodes_addr(tmp_mask), old_nodes, nr_bits))
1137 return -EFAULT;
1138 old = compat_alloc_user_space(new_nodes ? size * 2 : size);
1139 if (new_nodes)
1140 new = old + size / sizeof(unsigned long);
1141 if (copy_to_user(old, nodes_addr(tmp_mask), size))
1142 return -EFAULT;
1143 }
1144 if (new_nodes) {
1145 if (compat_get_bitmap(nodes_addr(tmp_mask), new_nodes, nr_bits))
1146 return -EFAULT;
1147 if (new == NULL)
1148 new = compat_alloc_user_space(size);
1149 if (copy_to_user(new, nodes_addr(tmp_mask), size))
1150 return -EFAULT;
1151 }
1152 return sys_migrate_pages(pid, nr_bits + 1, old, new);
1153}
Christoph Lameter1b2db9f2006-06-23 02:03:56 -07001154#endif
Kyle McMartind4d23ad2007-02-10 01:46:00 -08001155
1156struct compat_sysinfo {
1157 s32 uptime;
1158 u32 loads[3];
1159 u32 totalram;
1160 u32 freeram;
1161 u32 sharedram;
1162 u32 bufferram;
1163 u32 totalswap;
1164 u32 freeswap;
1165 u16 procs;
1166 u16 pad;
1167 u32 totalhigh;
1168 u32 freehigh;
1169 u32 mem_unit;
1170 char _f[20-2*sizeof(u32)-sizeof(int)];
1171};
1172
1173asmlinkage long
1174compat_sys_sysinfo(struct compat_sysinfo __user *info)
1175{
1176 struct sysinfo s;
1177
1178 do_sysinfo(&s);
1179
1180 /* Check to see if any memory value is too large for 32-bit and scale
1181 * down if needed
1182 */
1183 if ((s.totalram >> 32) || (s.totalswap >> 32)) {
1184 int bitcount = 0;
1185
1186 while (s.mem_unit < PAGE_SIZE) {
1187 s.mem_unit <<= 1;
1188 bitcount++;
1189 }
1190
1191 s.totalram >>= bitcount;
1192 s.freeram >>= bitcount;
1193 s.sharedram >>= bitcount;
1194 s.bufferram >>= bitcount;
1195 s.totalswap >>= bitcount;
1196 s.freeswap >>= bitcount;
1197 s.totalhigh >>= bitcount;
1198 s.freehigh >>= bitcount;
1199 }
1200
1201 if (!access_ok(VERIFY_WRITE, info, sizeof(struct compat_sysinfo)) ||
1202 __put_user (s.uptime, &info->uptime) ||
1203 __put_user (s.loads[0], &info->loads[0]) ||
1204 __put_user (s.loads[1], &info->loads[1]) ||
1205 __put_user (s.loads[2], &info->loads[2]) ||
1206 __put_user (s.totalram, &info->totalram) ||
1207 __put_user (s.freeram, &info->freeram) ||
1208 __put_user (s.sharedram, &info->sharedram) ||
1209 __put_user (s.bufferram, &info->bufferram) ||
1210 __put_user (s.totalswap, &info->totalswap) ||
1211 __put_user (s.freeswap, &info->freeswap) ||
1212 __put_user (s.procs, &info->procs) ||
1213 __put_user (s.totalhigh, &info->totalhigh) ||
1214 __put_user (s.freehigh, &info->freehigh) ||
1215 __put_user (s.mem_unit, &info->mem_unit))
1216 return -EFAULT;
1217
1218 return 0;
1219}
H. Peter Anvinc41d68a2010-09-07 16:16:18 -07001220
Catalin Marinas0ad50c32012-12-17 16:01:45 -08001221#ifdef __ARCH_WANT_COMPAT_SYS_SCHED_RR_GET_INTERVAL
1222asmlinkage long compat_sys_sched_rr_get_interval(compat_pid_t pid,
1223 struct compat_timespec __user *interval)
1224{
1225 struct timespec t;
1226 int ret;
1227 mm_segment_t old_fs = get_fs();
1228
1229 set_fs(KERNEL_DS);
1230 ret = sys_sched_rr_get_interval(pid, (struct timespec __user *)&t);
1231 set_fs(old_fs);
1232 if (put_compat_timespec(&t, interval))
1233 return -EFAULT;
1234 return ret;
1235}
1236#endif /* __ARCH_WANT_COMPAT_SYS_SCHED_RR_GET_INTERVAL */
1237
H. Peter Anvinc41d68a2010-09-07 16:16:18 -07001238/*
1239 * Allocate user-space memory for the duration of a single system call,
1240 * in order to marshall parameters inside a compat thunk.
1241 */
1242void __user *compat_alloc_user_space(unsigned long len)
1243{
1244 void __user *ptr;
1245
1246 /* If len would occupy more than half of the entire compat space... */
1247 if (unlikely(len > (((compat_uptr_t)~0) >> 1)))
1248 return NULL;
1249
1250 ptr = arch_compat_alloc_user_space(len);
1251
1252 if (unlikely(!access_ok(VERIFY_WRITE, ptr, len)))
1253 return NULL;
1254
1255 return ptr;
1256}
1257EXPORT_SYMBOL_GPL(compat_alloc_user_space);