blob: 7076b57fa52eb4031bf1d046b6625a1bcda0bc01 [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
Richard Cochran65f5d802011-02-01 13:52:23 +000033static int compat_get_timex(struct timex *txc, struct compat_timex __user *utp)
34{
35 memset(txc, 0, sizeof(struct timex));
36
37 if (!access_ok(VERIFY_READ, utp, sizeof(struct compat_timex)) ||
38 __get_user(txc->modes, &utp->modes) ||
39 __get_user(txc->offset, &utp->offset) ||
40 __get_user(txc->freq, &utp->freq) ||
41 __get_user(txc->maxerror, &utp->maxerror) ||
42 __get_user(txc->esterror, &utp->esterror) ||
43 __get_user(txc->status, &utp->status) ||
44 __get_user(txc->constant, &utp->constant) ||
45 __get_user(txc->precision, &utp->precision) ||
46 __get_user(txc->tolerance, &utp->tolerance) ||
47 __get_user(txc->time.tv_sec, &utp->time.tv_sec) ||
48 __get_user(txc->time.tv_usec, &utp->time.tv_usec) ||
49 __get_user(txc->tick, &utp->tick) ||
50 __get_user(txc->ppsfreq, &utp->ppsfreq) ||
51 __get_user(txc->jitter, &utp->jitter) ||
52 __get_user(txc->shift, &utp->shift) ||
53 __get_user(txc->stabil, &utp->stabil) ||
54 __get_user(txc->jitcnt, &utp->jitcnt) ||
55 __get_user(txc->calcnt, &utp->calcnt) ||
56 __get_user(txc->errcnt, &utp->errcnt) ||
57 __get_user(txc->stbcnt, &utp->stbcnt))
58 return -EFAULT;
59
60 return 0;
61}
62
63static int compat_put_timex(struct compat_timex __user *utp, struct timex *txc)
64{
65 if (!access_ok(VERIFY_WRITE, utp, sizeof(struct compat_timex)) ||
66 __put_user(txc->modes, &utp->modes) ||
67 __put_user(txc->offset, &utp->offset) ||
68 __put_user(txc->freq, &utp->freq) ||
69 __put_user(txc->maxerror, &utp->maxerror) ||
70 __put_user(txc->esterror, &utp->esterror) ||
71 __put_user(txc->status, &utp->status) ||
72 __put_user(txc->constant, &utp->constant) ||
73 __put_user(txc->precision, &utp->precision) ||
74 __put_user(txc->tolerance, &utp->tolerance) ||
75 __put_user(txc->time.tv_sec, &utp->time.tv_sec) ||
76 __put_user(txc->time.tv_usec, &utp->time.tv_usec) ||
77 __put_user(txc->tick, &utp->tick) ||
78 __put_user(txc->ppsfreq, &utp->ppsfreq) ||
79 __put_user(txc->jitter, &utp->jitter) ||
80 __put_user(txc->shift, &utp->shift) ||
81 __put_user(txc->stabil, &utp->stabil) ||
82 __put_user(txc->jitcnt, &utp->jitcnt) ||
83 __put_user(txc->calcnt, &utp->calcnt) ||
84 __put_user(txc->errcnt, &utp->errcnt) ||
85 __put_user(txc->stbcnt, &utp->stbcnt) ||
86 __put_user(txc->tai, &utp->tai))
87 return -EFAULT;
88 return 0;
89}
90
Christoph Hellwigb418da12008-10-15 22:02:06 -070091asmlinkage long compat_sys_gettimeofday(struct compat_timeval __user *tv,
92 struct timezone __user *tz)
93{
94 if (tv) {
95 struct timeval ktv;
96 do_gettimeofday(&ktv);
H. Peter Anvin81993e82014-02-01 18:54:11 -080097 if (compat_put_timeval(&ktv, tv))
Christoph Hellwigb418da12008-10-15 22:02:06 -070098 return -EFAULT;
99 }
100 if (tz) {
101 if (copy_to_user(tz, &sys_tz, sizeof(sys_tz)))
102 return -EFAULT;
103 }
104
105 return 0;
106}
107
108asmlinkage long compat_sys_settimeofday(struct compat_timeval __user *tv,
109 struct timezone __user *tz)
110{
H. Peter Anvin81993e82014-02-01 18:54:11 -0800111 struct timeval user_tv;
112 struct timespec new_ts;
113 struct timezone new_tz;
Christoph Hellwigb418da12008-10-15 22:02:06 -0700114
115 if (tv) {
H. Peter Anvin81993e82014-02-01 18:54:11 -0800116 if (compat_get_timeval(&user_tv, tv))
Christoph Hellwigb418da12008-10-15 22:02:06 -0700117 return -EFAULT;
H. Peter Anvin81993e82014-02-01 18:54:11 -0800118 new_ts.tv_sec = user_tv.tv_sec;
119 new_ts.tv_nsec = user_tv.tv_usec * NSEC_PER_USEC;
Christoph Hellwigb418da12008-10-15 22:02:06 -0700120 }
121 if (tz) {
H. Peter Anvin81993e82014-02-01 18:54:11 -0800122 if (copy_from_user(&new_tz, tz, sizeof(*tz)))
Christoph Hellwigb418da12008-10-15 22:02:06 -0700123 return -EFAULT;
124 }
125
H. Peter Anvin81993e82014-02-01 18:54:11 -0800126 return do_sys_settimeofday(tv ? &new_ts : NULL, tz ? &new_tz : NULL);
Christoph Hellwigb418da12008-10-15 22:02:06 -0700127}
128
H. Peter Anvin81993e82014-02-01 18:54:11 -0800129static int __compat_get_timeval(struct timeval *tv, const struct compat_timeval __user *ctv)
H. Peter Anvin6684ba22012-02-19 17:38:00 -0800130{
131 return (!access_ok(VERIFY_READ, ctv, sizeof(*ctv)) ||
132 __get_user(tv->tv_sec, &ctv->tv_sec) ||
133 __get_user(tv->tv_usec, &ctv->tv_usec)) ? -EFAULT : 0;
134}
H. Peter Anvin6684ba22012-02-19 17:38:00 -0800135
H. Peter Anvin81993e82014-02-01 18:54:11 -0800136static int __compat_put_timeval(const struct timeval *tv, struct compat_timeval __user *ctv)
H. Peter Anvin6684ba22012-02-19 17:38:00 -0800137{
138 return (!access_ok(VERIFY_WRITE, ctv, sizeof(*ctv)) ||
139 __put_user(tv->tv_sec, &ctv->tv_sec) ||
140 __put_user(tv->tv_usec, &ctv->tv_usec)) ? -EFAULT : 0;
141}
H. Peter Anvin6684ba22012-02-19 17:38:00 -0800142
H. Peter Anvin81993e82014-02-01 18:54:11 -0800143static int __compat_get_timespec(struct timespec *ts, const struct compat_timespec __user *cts)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144{
145 return (!access_ok(VERIFY_READ, cts, sizeof(*cts)) ||
146 __get_user(ts->tv_sec, &cts->tv_sec) ||
147 __get_user(ts->tv_nsec, &cts->tv_nsec)) ? -EFAULT : 0;
148}
149
H. Peter Anvin81993e82014-02-01 18:54:11 -0800150static int __compat_put_timespec(const struct timespec *ts, struct compat_timespec __user *cts)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151{
152 return (!access_ok(VERIFY_WRITE, cts, sizeof(*cts)) ||
153 __put_user(ts->tv_sec, &cts->tv_sec) ||
154 __put_user(ts->tv_nsec, &cts->tv_nsec)) ? -EFAULT : 0;
155}
156
H. Peter Anvin6684ba22012-02-19 17:38:00 -0800157int compat_get_timeval(struct timeval *tv, const void __user *utv)
158{
159 if (COMPAT_USE_64BIT_TIME)
160 return copy_from_user(tv, utv, sizeof *tv) ? -EFAULT : 0;
161 else
H. Peter Anvin81993e82014-02-01 18:54:11 -0800162 return __compat_get_timeval(tv, utv);
H. Peter Anvin6684ba22012-02-19 17:38:00 -0800163}
164EXPORT_SYMBOL_GPL(compat_get_timeval);
165
166int compat_put_timeval(const struct timeval *tv, void __user *utv)
167{
168 if (COMPAT_USE_64BIT_TIME)
169 return copy_to_user(utv, tv, sizeof *tv) ? -EFAULT : 0;
170 else
H. Peter Anvin81993e82014-02-01 18:54:11 -0800171 return __compat_put_timeval(tv, utv);
H. Peter Anvin6684ba22012-02-19 17:38:00 -0800172}
173EXPORT_SYMBOL_GPL(compat_put_timeval);
174
175int compat_get_timespec(struct timespec *ts, const void __user *uts)
176{
177 if (COMPAT_USE_64BIT_TIME)
178 return copy_from_user(ts, uts, sizeof *ts) ? -EFAULT : 0;
179 else
H. Peter Anvin81993e82014-02-01 18:54:11 -0800180 return __compat_get_timespec(ts, uts);
H. Peter Anvin6684ba22012-02-19 17:38:00 -0800181}
182EXPORT_SYMBOL_GPL(compat_get_timespec);
183
184int compat_put_timespec(const struct timespec *ts, void __user *uts)
185{
186 if (COMPAT_USE_64BIT_TIME)
187 return copy_to_user(uts, ts, sizeof *ts) ? -EFAULT : 0;
188 else
H. Peter Anvin81993e82014-02-01 18:54:11 -0800189 return __compat_put_timespec(ts, uts);
H. Peter Anvin6684ba22012-02-19 17:38:00 -0800190}
191EXPORT_SYMBOL_GPL(compat_put_timespec);
192
H. Peter Anvin81993e82014-02-01 18:54:11 -0800193int compat_convert_timespec(struct timespec __user **kts,
194 const void __user *cts)
195{
196 struct timespec ts;
197 struct timespec __user *uts;
198
199 if (!cts || COMPAT_USE_64BIT_TIME) {
200 *kts = (struct timespec __user *)cts;
201 return 0;
202 }
203
204 uts = compat_alloc_user_space(sizeof(ts));
205 if (!uts)
206 return -EFAULT;
207 if (compat_get_timespec(&ts, cts))
208 return -EFAULT;
209 if (copy_to_user(uts, &ts, sizeof(ts)))
210 return -EFAULT;
211
212 *kts = uts;
213 return 0;
214}
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
H. Peter Anvin81993e82014-02-01 18:54:11 -0800232 if (rmtp && compat_put_timespec(&rmt, rmtp))
Oleg Nesterov41652932008-02-01 20:35:31 +0300233 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
H. Peter Anvin81993e82014-02-01 18:54:11 -0800246 if (compat_get_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
H. Peter Anvin81993e82014-02-01 18:54:11 -0800266 if (rmtp && compat_put_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
Al Viro37784072012-12-24 17:28:40 -0500293COMPAT_SYSCALL_DEFINE2(getitimer, int, which,
294 struct compat_itimerval __user *, it)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295{
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
Al Viro37784072012-12-24 17:28:40 -0500305COMPAT_SYSCALL_DEFINE3(setitimer, int, which,
306 struct compat_itimerval __user *, in,
307 struct compat_itimerval __user *, out)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308{
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
Al Viro5cf22102012-11-25 19:41:01 -0500384COMPAT_SYSCALL_DEFINE3(sigprocmask, int, how,
385 compat_old_sigset_t __user *, nset,
386 compat_old_sigset_t __user *, oset)
Jan Kiszkab7dafa02012-05-10 10:04:36 -0300387{
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);
H. Peter Anvindce44e02014-02-02 17:57:28 -0800454 ret = sys_old_getrlimit(resource, (struct rlimit __user *)&r);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 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
Al Viro8d9807b2012-12-23 14:56:40 -0500519COMPAT_SYSCALL_DEFINE4(wait4,
520 compat_pid_t, pid,
521 compat_uint_t __user *, stat_addr,
522 int, options,
523 struct compat_rusage __user *, ru)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524{
525 if (!ru) {
526 return sys_wait4(pid, stat_addr, options, NULL);
527 } else {
528 struct rusage r;
529 int ret;
530 unsigned int status;
531 mm_segment_t old_fs = get_fs();
532
533 set_fs (KERNEL_DS);
534 ret = sys_wait4(pid,
535 (stat_addr ?
536 (unsigned int __user *) &status : NULL),
537 options, (struct rusage __user *) &r);
538 set_fs (old_fs);
539
540 if (ret > 0) {
541 if (put_compat_rusage(&r, ru))
542 return -EFAULT;
543 if (stat_addr && put_user(status, stat_addr))
544 return -EFAULT;
545 }
546 return ret;
547 }
548}
549
Al Viro8d9807b2012-12-23 14:56:40 -0500550COMPAT_SYSCALL_DEFINE5(waitid,
551 int, which, compat_pid_t, pid,
552 struct compat_siginfo __user *, uinfo, int, options,
553 struct compat_rusage __user *, uru)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554{
555 siginfo_t info;
556 struct rusage ru;
557 long ret;
558 mm_segment_t old_fs = get_fs();
559
560 memset(&info, 0, sizeof(info));
561
562 set_fs(KERNEL_DS);
563 ret = sys_waitid(which, pid, (siginfo_t __user *)&info, options,
564 uru ? (struct rusage __user *)&ru : NULL);
565 set_fs(old_fs);
566
567 if ((ret < 0) || (info.si_signo == 0))
568 return ret;
569
570 if (uru) {
Al Viroa566c282012-12-23 23:14:49 -0500571 /* sys_waitid() overwrites everything in ru */
572 if (COMPAT_USE_64BIT_TIME)
573 ret = copy_to_user(uru, &ru, sizeof(ru));
574 else
575 ret = put_compat_rusage(&ru, uru);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576 if (ret)
Dan Carpenterbffea772013-02-21 16:41:57 -0800577 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578 }
579
580 BUG_ON(info.si_code & __SI_MASK);
581 info.si_code |= __SI_CHLD;
582 return copy_siginfo_to_user32(uinfo, &info);
583}
584
585static int compat_get_user_cpu_mask(compat_ulong_t __user *user_mask_ptr,
Rusty Russella45185d2009-01-01 10:12:24 +1030586 unsigned len, struct cpumask *new_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587{
588 unsigned long *k;
589
Rusty Russella45185d2009-01-01 10:12:24 +1030590 if (len < cpumask_size())
591 memset(new_mask, 0, cpumask_size());
592 else if (len > cpumask_size())
593 len = cpumask_size();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594
Rusty Russella45185d2009-01-01 10:12:24 +1030595 k = cpumask_bits(new_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596 return compat_get_bitmap(k, user_mask_ptr, len * 8);
597}
598
599asmlinkage long compat_sys_sched_setaffinity(compat_pid_t pid,
600 unsigned int len,
601 compat_ulong_t __user *user_mask_ptr)
602{
Rusty Russella45185d2009-01-01 10:12:24 +1030603 cpumask_var_t new_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604 int retval;
605
Rusty Russella45185d2009-01-01 10:12:24 +1030606 if (!alloc_cpumask_var(&new_mask, GFP_KERNEL))
607 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608
Rusty Russella45185d2009-01-01 10:12:24 +1030609 retval = compat_get_user_cpu_mask(user_mask_ptr, len, new_mask);
610 if (retval)
611 goto out;
612
613 retval = sched_setaffinity(pid, new_mask);
614out:
615 free_cpumask_var(new_mask);
616 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617}
618
619asmlinkage long compat_sys_sched_getaffinity(compat_pid_t pid, unsigned int len,
620 compat_ulong_t __user *user_mask_ptr)
621{
622 int ret;
Rusty Russella45185d2009-01-01 10:12:24 +1030623 cpumask_var_t mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624
KOSAKI Motohirofa9dc262010-05-19 09:37:41 +0900625 if ((len * BITS_PER_BYTE) < nr_cpu_ids)
626 return -EINVAL;
627 if (len & (sizeof(compat_ulong_t)-1))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628 return -EINVAL;
629
Rusty Russella45185d2009-01-01 10:12:24 +1030630 if (!alloc_cpumask_var(&mask, GFP_KERNEL))
631 return -ENOMEM;
632
633 ret = sched_getaffinity(pid, mask);
KOSAKI Motohirofa9dc262010-05-19 09:37:41 +0900634 if (ret == 0) {
635 size_t retlen = min_t(size_t, len, cpumask_size());
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636
KOSAKI Motohirofa9dc262010-05-19 09:37:41 +0900637 if (compat_put_bitmap(user_mask_ptr, cpumask_bits(mask), retlen * 8))
638 ret = -EFAULT;
639 else
640 ret = retlen;
641 }
Rusty Russella45185d2009-01-01 10:12:24 +1030642 free_cpumask_var(mask);
KOSAKI Motohirofa9dc262010-05-19 09:37:41 +0900643
Rusty Russella45185d2009-01-01 10:12:24 +1030644 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645}
646
Davide Libenzi83f5d122007-05-10 22:23:18 -0700647int get_compat_itimerspec(struct itimerspec *dst,
648 const struct compat_itimerspec __user *src)
Daniel Walkerbd3a8492007-10-18 03:06:09 -0700649{
H. Peter Anvin81993e82014-02-01 18:54:11 -0800650 if (__compat_get_timespec(&dst->it_interval, &src->it_interval) ||
651 __compat_get_timespec(&dst->it_value, &src->it_value))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652 return -EFAULT;
653 return 0;
Daniel Walkerbd3a8492007-10-18 03:06:09 -0700654}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655
Davide Libenzi83f5d122007-05-10 22:23:18 -0700656int put_compat_itimerspec(struct compat_itimerspec __user *dst,
657 const struct itimerspec *src)
Daniel Walkerbd3a8492007-10-18 03:06:09 -0700658{
H. Peter Anvin81993e82014-02-01 18:54:11 -0800659 if (__compat_put_timespec(&src->it_interval, &dst->it_interval) ||
660 __compat_put_timespec(&src->it_value, &dst->it_value))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661 return -EFAULT;
662 return 0;
Daniel Walkerbd3a8492007-10-18 03:06:09 -0700663}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664
Christoph Hellwig3a0f69d2006-01-09 20:52:08 -0800665long compat_sys_timer_create(clockid_t which_clock,
666 struct compat_sigevent __user *timer_event_spec,
667 timer_t __user *created_timer_id)
668{
669 struct sigevent __user *event = NULL;
670
671 if (timer_event_spec) {
672 struct sigevent kevent;
673
674 event = compat_alloc_user_space(sizeof(*event));
675 if (get_compat_sigevent(&kevent, timer_event_spec) ||
676 copy_to_user(event, &kevent, sizeof(*event)))
677 return -EFAULT;
678 }
679
680 return sys_timer_create(which_clock, event, created_timer_id);
681}
682
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683long compat_sys_timer_settime(timer_t timer_id, int flags,
Daniel Walkerbd3a8492007-10-18 03:06:09 -0700684 struct compat_itimerspec __user *new,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685 struct compat_itimerspec __user *old)
Daniel Walkerbd3a8492007-10-18 03:06:09 -0700686{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687 long err;
688 mm_segment_t oldfs;
689 struct itimerspec newts, oldts;
690
691 if (!new)
692 return -EINVAL;
693 if (get_compat_itimerspec(&newts, new))
Daniel Walkerbd3a8492007-10-18 03:06:09 -0700694 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695 oldfs = get_fs();
696 set_fs(KERNEL_DS);
697 err = sys_timer_settime(timer_id, flags,
698 (struct itimerspec __user *) &newts,
699 (struct itimerspec __user *) &oldts);
Daniel Walkerbd3a8492007-10-18 03:06:09 -0700700 set_fs(oldfs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701 if (!err && old && put_compat_itimerspec(old, &oldts))
702 return -EFAULT;
703 return err;
Daniel Walkerbd3a8492007-10-18 03:06:09 -0700704}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705
706long compat_sys_timer_gettime(timer_t timer_id,
707 struct compat_itimerspec __user *setting)
Daniel Walkerbd3a8492007-10-18 03:06:09 -0700708{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709 long err;
710 mm_segment_t oldfs;
Daniel Walkerbd3a8492007-10-18 03:06:09 -0700711 struct itimerspec ts;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712
713 oldfs = get_fs();
714 set_fs(KERNEL_DS);
715 err = sys_timer_gettime(timer_id,
Daniel Walkerbd3a8492007-10-18 03:06:09 -0700716 (struct itimerspec __user *) &ts);
717 set_fs(oldfs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718 if (!err && put_compat_itimerspec(setting, &ts))
719 return -EFAULT;
720 return err;
Daniel Walkerbd3a8492007-10-18 03:06:09 -0700721}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722
723long compat_sys_clock_settime(clockid_t which_clock,
724 struct compat_timespec __user *tp)
725{
726 long err;
727 mm_segment_t oldfs;
Daniel Walkerbd3a8492007-10-18 03:06:09 -0700728 struct timespec ts;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729
H. Peter Anvin81993e82014-02-01 18:54:11 -0800730 if (compat_get_timespec(&ts, tp))
Daniel Walkerbd3a8492007-10-18 03:06:09 -0700731 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732 oldfs = get_fs();
Daniel Walkerbd3a8492007-10-18 03:06:09 -0700733 set_fs(KERNEL_DS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734 err = sys_clock_settime(which_clock,
735 (struct timespec __user *) &ts);
736 set_fs(oldfs);
737 return err;
Daniel Walkerbd3a8492007-10-18 03:06:09 -0700738}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739
740long compat_sys_clock_gettime(clockid_t which_clock,
741 struct compat_timespec __user *tp)
742{
743 long err;
744 mm_segment_t oldfs;
Daniel Walkerbd3a8492007-10-18 03:06:09 -0700745 struct timespec ts;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746
747 oldfs = get_fs();
748 set_fs(KERNEL_DS);
749 err = sys_clock_gettime(which_clock,
750 (struct timespec __user *) &ts);
751 set_fs(oldfs);
H. Peter Anvin81993e82014-02-01 18:54:11 -0800752 if (!err && compat_put_timespec(&ts, tp))
Daniel Walkerbd3a8492007-10-18 03:06:09 -0700753 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754 return err;
Daniel Walkerbd3a8492007-10-18 03:06:09 -0700755}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756
Richard Cochranf1f1d5e2011-02-01 13:52:26 +0000757long compat_sys_clock_adjtime(clockid_t which_clock,
758 struct compat_timex __user *utp)
759{
760 struct timex txc;
761 mm_segment_t oldfs;
762 int err, ret;
763
764 err = compat_get_timex(&txc, utp);
765 if (err)
766 return err;
767
768 oldfs = get_fs();
769 set_fs(KERNEL_DS);
770 ret = sys_clock_adjtime(which_clock, (struct timex __user *) &txc);
771 set_fs(oldfs);
772
773 err = compat_put_timex(utp, &txc);
774 if (err)
775 return err;
776
777 return ret;
778}
779
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780long compat_sys_clock_getres(clockid_t which_clock,
781 struct compat_timespec __user *tp)
782{
783 long err;
784 mm_segment_t oldfs;
Daniel Walkerbd3a8492007-10-18 03:06:09 -0700785 struct timespec ts;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786
787 oldfs = get_fs();
788 set_fs(KERNEL_DS);
789 err = sys_clock_getres(which_clock,
790 (struct timespec __user *) &ts);
791 set_fs(oldfs);
H. Peter Anvin81993e82014-02-01 18:54:11 -0800792 if (!err && tp && compat_put_timespec(&ts, tp))
Daniel Walkerbd3a8492007-10-18 03:06:09 -0700793 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794 return err;
Daniel Walkerbd3a8492007-10-18 03:06:09 -0700795}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796
Toyo Abe1711ef32006-09-29 02:00:28 -0700797static long compat_clock_nanosleep_restart(struct restart_block *restart)
798{
799 long err;
800 mm_segment_t oldfs;
801 struct timespec tu;
H. Peter Anvindce44e02014-02-02 17:57:28 -0800802 struct compat_timespec __user *rmtp = restart->nanosleep.compat_rmtp;
Toyo Abe1711ef32006-09-29 02:00:28 -0700803
Thomas Gleixner029a07e2008-02-10 09:17:43 +0100804 restart->nanosleep.rmtp = (struct timespec __user *) &tu;
Toyo Abe1711ef32006-09-29 02:00:28 -0700805 oldfs = get_fs();
806 set_fs(KERNEL_DS);
807 err = clock_nanosleep_restart(restart);
808 set_fs(oldfs);
809
810 if ((err == -ERESTART_RESTARTBLOCK) && rmtp &&
H. Peter Anvin81993e82014-02-01 18:54:11 -0800811 compat_put_timespec(&tu, rmtp))
Toyo Abe1711ef32006-09-29 02:00:28 -0700812 return -EFAULT;
813
814 if (err == -ERESTART_RESTARTBLOCK) {
815 restart->fn = compat_clock_nanosleep_restart;
Thomas Gleixner029a07e2008-02-10 09:17:43 +0100816 restart->nanosleep.compat_rmtp = rmtp;
Toyo Abe1711ef32006-09-29 02:00:28 -0700817 }
818 return err;
819}
820
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821long compat_sys_clock_nanosleep(clockid_t which_clock, int flags,
822 struct compat_timespec __user *rqtp,
823 struct compat_timespec __user *rmtp)
824{
825 long err;
826 mm_segment_t oldfs;
Daniel Walkerbd3a8492007-10-18 03:06:09 -0700827 struct timespec in, out;
Toyo Abe1711ef32006-09-29 02:00:28 -0700828 struct restart_block *restart;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829
H. Peter Anvin81993e82014-02-01 18:54:11 -0800830 if (compat_get_timespec(&in, rqtp))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831 return -EFAULT;
832
833 oldfs = get_fs();
834 set_fs(KERNEL_DS);
835 err = sys_clock_nanosleep(which_clock, flags,
836 (struct timespec __user *) &in,
837 (struct timespec __user *) &out);
838 set_fs(oldfs);
Toyo Abe1711ef32006-09-29 02:00:28 -0700839
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840 if ((err == -ERESTART_RESTARTBLOCK) && rmtp &&
H. Peter Anvin81993e82014-02-01 18:54:11 -0800841 compat_put_timespec(&out, rmtp))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842 return -EFAULT;
Toyo Abe1711ef32006-09-29 02:00:28 -0700843
844 if (err == -ERESTART_RESTARTBLOCK) {
845 restart = &current_thread_info()->restart_block;
846 restart->fn = compat_clock_nanosleep_restart;
Thomas Gleixner029a07e2008-02-10 09:17:43 +0100847 restart->nanosleep.compat_rmtp = rmtp;
Toyo Abe1711ef32006-09-29 02:00:28 -0700848 }
Daniel Walkerbd3a8492007-10-18 03:06:09 -0700849 return err;
850}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851
852/*
853 * We currently only need the following fields from the sigevent
854 * structure: sigev_value, sigev_signo, sig_notify and (sometimes
855 * sigev_notify_thread_id). The others are handled in user mode.
856 * We also assume that copying sigev_value.sival_int is sufficient
857 * to keep all the bits of sigev_value.sival_ptr intact.
858 */
859int get_compat_sigevent(struct sigevent *event,
860 const struct compat_sigevent __user *u_event)
861{
David S. Miller51410d32005-04-16 15:24:01 -0700862 memset(event, 0, sizeof(*event));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863 return (!access_ok(VERIFY_READ, u_event, sizeof(*u_event)) ||
864 __get_user(event->sigev_value.sival_int,
865 &u_event->sigev_value.sival_int) ||
866 __get_user(event->sigev_signo, &u_event->sigev_signo) ||
867 __get_user(event->sigev_notify, &u_event->sigev_notify) ||
868 __get_user(event->sigev_notify_thread_id,
869 &u_event->sigev_notify_thread_id))
870 ? -EFAULT : 0;
871}
872
Stephen Rothwell5fa38392006-10-28 10:38:46 -0700873long compat_get_bitmap(unsigned long *mask, const compat_ulong_t __user *umask,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874 unsigned long bitmap_size)
875{
876 int i, j;
877 unsigned long m;
878 compat_ulong_t um;
879 unsigned long nr_compat_longs;
880
881 /* align bitmap up to nearest compat_long_t boundary */
882 bitmap_size = ALIGN(bitmap_size, BITS_PER_COMPAT_LONG);
883
884 if (!access_ok(VERIFY_READ, umask, bitmap_size / 8))
885 return -EFAULT;
886
887 nr_compat_longs = BITS_TO_COMPAT_LONGS(bitmap_size);
888
889 for (i = 0; i < BITS_TO_LONGS(bitmap_size); i++) {
890 m = 0;
891
892 for (j = 0; j < sizeof(m)/sizeof(um); j++) {
893 /*
894 * We dont want to read past the end of the userspace
895 * bitmap. We must however ensure the end of the
896 * kernel bitmap is zeroed.
897 */
898 if (nr_compat_longs-- > 0) {
899 if (__get_user(um, umask))
900 return -EFAULT;
901 } else {
902 um = 0;
903 }
904
905 umask++;
906 m |= (long)um << (j * BITS_PER_COMPAT_LONG);
907 }
908 *mask++ = m;
909 }
910
911 return 0;
912}
913
914long compat_put_bitmap(compat_ulong_t __user *umask, unsigned long *mask,
915 unsigned long bitmap_size)
916{
917 int i, j;
918 unsigned long m;
919 compat_ulong_t um;
920 unsigned long nr_compat_longs;
921
922 /* align bitmap up to nearest compat_long_t boundary */
923 bitmap_size = ALIGN(bitmap_size, BITS_PER_COMPAT_LONG);
924
925 if (!access_ok(VERIFY_WRITE, umask, bitmap_size / 8))
926 return -EFAULT;
927
928 nr_compat_longs = BITS_TO_COMPAT_LONGS(bitmap_size);
929
930 for (i = 0; i < BITS_TO_LONGS(bitmap_size); i++) {
931 m = *mask++;
932
933 for (j = 0; j < sizeof(m)/sizeof(um); j++) {
934 um = m;
935
936 /*
937 * We dont want to write past the end of the userspace
938 * bitmap.
939 */
940 if (nr_compat_longs-- > 0) {
941 if (__put_user(um, umask))
942 return -EFAULT;
943 }
944
945 umask++;
946 m >>= 4*sizeof(um);
947 m >>= 4*sizeof(um);
948 }
949 }
950
951 return 0;
952}
953
954void
Al Viro322a56c2012-12-25 13:32:58 -0500955sigset_from_compat(sigset_t *set, const compat_sigset_t *compat)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956{
957 switch (_NSIG_WORDS) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958 case 4: set->sig[3] = compat->sig[6] | (((long)compat->sig[7]) << 32 );
959 case 3: set->sig[2] = compat->sig[4] | (((long)compat->sig[5]) << 32 );
960 case 2: set->sig[1] = compat->sig[2] | (((long)compat->sig[3]) << 32 );
961 case 1: set->sig[0] = compat->sig[0] | (((long)compat->sig[1]) << 32 );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962 }
963}
Alexander Graf1dda6062011-06-08 02:45:37 +0200964EXPORT_SYMBOL_GPL(sigset_from_compat);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965
Al Viro322a56c2012-12-25 13:32:58 -0500966void
967sigset_to_compat(compat_sigset_t *compat, const sigset_t *set)
968{
969 switch (_NSIG_WORDS) {
970 case 4: compat->sig[7] = (set->sig[3] >> 32); compat->sig[6] = set->sig[3];
971 case 3: compat->sig[5] = (set->sig[2] >> 32); compat->sig[4] = set->sig[2];
972 case 2: compat->sig[3] = (set->sig[1] >> 32); compat->sig[2] = set->sig[1];
973 case 1: compat->sig[1] = (set->sig[0] >> 32); compat->sig[0] = set->sig[0];
974 }
975}
976
Al Viro28d27f22012-11-25 19:32:25 -0500977COMPAT_SYSCALL_DEFINE4(rt_sigtimedwait, compat_sigset_t __user *, uthese,
978 struct compat_siginfo __user *, uinfo,
979 struct compat_timespec __user *, uts, compat_size_t, sigsetsize)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980{
981 compat_sigset_t s32;
982 sigset_t s;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983 struct timespec t;
984 siginfo_t info;
Oleg Nesterov943df142011-04-27 21:44:14 +0200985 long ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986
987 if (sigsetsize != sizeof(sigset_t))
988 return -EINVAL;
989
990 if (copy_from_user(&s32, uthese, sizeof(compat_sigset_t)))
991 return -EFAULT;
992 sigset_from_compat(&s, &s32);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993
994 if (uts) {
Al Virob2ddedc2012-12-24 12:31:00 -0500995 if (compat_get_timespec(&t, uts))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997 }
998
Oleg Nesterov943df142011-04-27 21:44:14 +0200999 ret = do_sigtimedwait(&s, &info, uts ? &t : NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000
Oleg Nesterov943df142011-04-27 21:44:14 +02001001 if (ret > 0 && uinfo) {
1002 if (copy_siginfo_to_user32(uinfo, &info))
1003 ret = -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006 return ret;
Thomas Gleixner62ab4502009-04-04 21:01:06 +00001007}
1008
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009#ifdef __ARCH_WANT_COMPAT_SYS_TIME
1010
1011/* compat_time_t is a 32 bit "long" and needs to get converted. */
1012
1013asmlinkage long compat_sys_time(compat_time_t __user * tloc)
1014{
1015 compat_time_t i;
1016 struct timeval tv;
1017
1018 do_gettimeofday(&tv);
1019 i = tv.tv_sec;
1020
1021 if (tloc) {
1022 if (put_user(i,tloc))
Paul Mackerrase3d5a272009-01-06 14:41:02 -08001023 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024 }
Paul Mackerrase3d5a272009-01-06 14:41:02 -08001025 force_successful_syscall_return();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026 return i;
1027}
1028
1029asmlinkage long compat_sys_stime(compat_time_t __user *tptr)
1030{
1031 struct timespec tv;
1032 int err;
1033
1034 if (get_user(tv.tv_sec, tptr))
1035 return -EFAULT;
1036
1037 tv.tv_nsec = 0;
1038
1039 err = security_settime(&tv, NULL);
1040 if (err)
1041 return err;
1042
1043 do_settimeofday(&tv);
1044 return 0;
1045}
1046
1047#endif /* __ARCH_WANT_COMPAT_SYS_TIME */
David Woodhouse150256d2006-01-18 17:43:57 -08001048
Stephen Rothwell3158e942006-03-26 01:37:29 -08001049asmlinkage long compat_sys_adjtimex(struct compat_timex __user *utp)
1050{
1051 struct timex txc;
Richard Cochran65f5d802011-02-01 13:52:23 +00001052 int err, ret;
Stephen Rothwell3158e942006-03-26 01:37:29 -08001053
Richard Cochran65f5d802011-02-01 13:52:23 +00001054 err = compat_get_timex(&txc, utp);
1055 if (err)
1056 return err;
Stephen Rothwell3158e942006-03-26 01:37:29 -08001057
1058 ret = do_adjtimex(&txc);
1059
Richard Cochran65f5d802011-02-01 13:52:23 +00001060 err = compat_put_timex(utp, &txc);
1061 if (err)
1062 return err;
Stephen Rothwell3158e942006-03-26 01:37:29 -08001063
1064 return ret;
1065}
Christoph Lameter1b2db9f2006-06-23 02:03:56 -07001066
1067#ifdef CONFIG_NUMA
1068asmlinkage long compat_sys_move_pages(pid_t pid, unsigned long nr_pages,
Christoph Lameter9216dfa2006-06-23 02:03:57 -07001069 compat_uptr_t __user *pages32,
Christoph Lameter1b2db9f2006-06-23 02:03:56 -07001070 const int __user *nodes,
1071 int __user *status,
1072 int flags)
1073{
1074 const void __user * __user *pages;
1075 int i;
1076
1077 pages = compat_alloc_user_space(nr_pages * sizeof(void *));
1078 for (i = 0; i < nr_pages; i++) {
1079 compat_uptr_t p;
1080
Christoph Lameter9216dfa2006-06-23 02:03:57 -07001081 if (get_user(p, pages32 + i) ||
Christoph Lameter1b2db9f2006-06-23 02:03:56 -07001082 put_user(compat_ptr(p), pages + i))
1083 return -EFAULT;
1084 }
1085 return sys_move_pages(pid, nr_pages, pages, nodes, status, flags);
1086}
Stephen Rothwell3fd59392006-11-02 22:07:24 -08001087
1088asmlinkage long compat_sys_migrate_pages(compat_pid_t pid,
1089 compat_ulong_t maxnode,
1090 const compat_ulong_t __user *old_nodes,
1091 const compat_ulong_t __user *new_nodes)
1092{
1093 unsigned long __user *old = NULL;
1094 unsigned long __user *new = NULL;
1095 nodemask_t tmp_mask;
1096 unsigned long nr_bits;
1097 unsigned long size;
1098
1099 nr_bits = min_t(unsigned long, maxnode - 1, MAX_NUMNODES);
1100 size = ALIGN(nr_bits, BITS_PER_LONG) / 8;
1101 if (old_nodes) {
1102 if (compat_get_bitmap(nodes_addr(tmp_mask), old_nodes, nr_bits))
1103 return -EFAULT;
1104 old = compat_alloc_user_space(new_nodes ? size * 2 : size);
1105 if (new_nodes)
1106 new = old + size / sizeof(unsigned long);
1107 if (copy_to_user(old, nodes_addr(tmp_mask), size))
1108 return -EFAULT;
1109 }
1110 if (new_nodes) {
1111 if (compat_get_bitmap(nodes_addr(tmp_mask), new_nodes, nr_bits))
1112 return -EFAULT;
1113 if (new == NULL)
1114 new = compat_alloc_user_space(size);
1115 if (copy_to_user(new, nodes_addr(tmp_mask), size))
1116 return -EFAULT;
1117 }
1118 return sys_migrate_pages(pid, nr_bits + 1, old, new);
1119}
Christoph Lameter1b2db9f2006-06-23 02:03:56 -07001120#endif
Kyle McMartind4d23ad2007-02-10 01:46:00 -08001121
Al Viro6883da82012-12-25 16:59:28 -05001122COMPAT_SYSCALL_DEFINE2(sched_rr_get_interval,
1123 compat_pid_t, pid,
1124 struct compat_timespec __user *, interval)
Catalin Marinas0ad50c32012-12-17 16:01:45 -08001125{
1126 struct timespec t;
1127 int ret;
1128 mm_segment_t old_fs = get_fs();
1129
1130 set_fs(KERNEL_DS);
1131 ret = sys_sched_rr_get_interval(pid, (struct timespec __user *)&t);
1132 set_fs(old_fs);
H. Peter Anvin81993e82014-02-01 18:54:11 -08001133 if (compat_put_timespec(&t, interval))
Catalin Marinas0ad50c32012-12-17 16:01:45 -08001134 return -EFAULT;
1135 return ret;
1136}
Catalin Marinas0ad50c32012-12-17 16:01:45 -08001137
H. Peter Anvinc41d68a2010-09-07 16:16:18 -07001138/*
1139 * Allocate user-space memory for the duration of a single system call,
1140 * in order to marshall parameters inside a compat thunk.
1141 */
1142void __user *compat_alloc_user_space(unsigned long len)
1143{
1144 void __user *ptr;
1145
1146 /* If len would occupy more than half of the entire compat space... */
1147 if (unlikely(len > (((compat_uptr_t)~0) >> 1)))
1148 return NULL;
1149
1150 ptr = arch_compat_alloc_user_space(len);
1151
1152 if (unlikely(!access_ok(VERIFY_WRITE, ptr, len)))
1153 return NULL;
1154
1155 return ptr;
1156}
1157EXPORT_SYMBOL_GPL(compat_alloc_user_space);