blob: ebb3c369d03d594067bda50bdffedd32159026e3 [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
Heiko Carstens62a6fa92014-03-03 16:11:13 +010091COMPAT_SYSCALL_DEFINE2(gettimeofday, struct compat_timeval __user *, tv,
92 struct timezone __user *, tz)
Christoph Hellwigb418da12008-10-15 22:02:06 -070093{
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
Heiko Carstens62a6fa92014-03-03 16:11:13 +0100108COMPAT_SYSCALL_DEFINE2(settimeofday, struct compat_timeval __user *, tv,
109 struct timezone __user *, tz)
Christoph Hellwigb418da12008-10-15 22:02:06 -0700110{
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)
Fabian Frederick6516a462014-06-04 16:12:02 -0700160 return copy_from_user(tv, utv, sizeof(*tv)) ? -EFAULT : 0;
H. Peter Anvin6684ba22012-02-19 17:38:00 -0800161 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)
Fabian Frederick6516a462014-06-04 16:12:02 -0700169 return copy_to_user(utv, tv, sizeof(*tv)) ? -EFAULT : 0;
H. Peter Anvin6684ba22012-02-19 17:38:00 -0800170 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)
Fabian Frederick6516a462014-06-04 16:12:02 -0700178 return copy_from_user(ts, uts, sizeof(*ts)) ? -EFAULT : 0;
H. Peter Anvin6684ba22012-02-19 17:38:00 -0800179 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)
Fabian Frederick6516a462014-06-04 16:12:02 -0700187 return copy_to_user(uts, ts, sizeof(*ts)) ? -EFAULT : 0;
H. Peter Anvin6684ba22012-02-19 17:38:00 -0800188 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
Thomas Gleixner849151d2014-09-06 12:18:07 +0200229 if (ret == -ERESTART_RESTARTBLOCK) {
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
Heiko Carstens62a6fa92014-03-03 16:11:13 +0100239COMPAT_SYSCALL_DEFINE2(nanosleep, struct compat_timespec __user *, rqtp,
240 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
Thomas Gleixner849151d2014-09-06 12:18:07 +0200259 /*
260 * hrtimer_nanosleep() can only return 0 or
261 * -ERESTART_RESTARTBLOCK here because:
262 *
263 * - we call it with HRTIMER_MODE_REL and therefor exclude the
264 * -ERESTARTNOHAND return path.
265 *
266 * - we supply the rmtp argument from the task stack (due to
267 * the necessary compat conversion. So the update cannot
268 * fail, which excludes the -EFAULT return path as well. If
269 * it fails nevertheless we have a bigger problem and wont
270 * reach this place anymore.
271 *
272 * - if the return value is 0, we do not have to update rmtp
273 * because there is no remaining time.
274 *
275 * We check for -ERESTART_RESTARTBLOCK nevertheless if the
276 * core implementation decides to return random nonsense.
277 */
278 if (ret == -ERESTART_RESTARTBLOCK) {
Oleg Nesterov41652932008-02-01 20:35:31 +0300279 struct restart_block *restart
280 = &current_thread_info()->restart_block;
281
282 restart->fn = compat_nanosleep_restart;
Thomas Gleixner029a07e2008-02-10 09:17:43 +0100283 restart->nanosleep.compat_rmtp = rmtp;
Oleg Nesterov41652932008-02-01 20:35:31 +0300284
H. Peter Anvin81993e82014-02-01 18:54:11 -0800285 if (rmtp && compat_put_timespec(&rmt, rmtp))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 return -EFAULT;
287 }
Anton Blanchardc70878b2007-10-15 16:13:56 -0500288 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289}
290
291static inline long get_compat_itimerval(struct itimerval *o,
292 struct compat_itimerval __user *i)
293{
294 return (!access_ok(VERIFY_READ, i, sizeof(*i)) ||
295 (__get_user(o->it_interval.tv_sec, &i->it_interval.tv_sec) |
296 __get_user(o->it_interval.tv_usec, &i->it_interval.tv_usec) |
297 __get_user(o->it_value.tv_sec, &i->it_value.tv_sec) |
298 __get_user(o->it_value.tv_usec, &i->it_value.tv_usec)));
299}
300
301static inline long put_compat_itimerval(struct compat_itimerval __user *o,
302 struct itimerval *i)
303{
304 return (!access_ok(VERIFY_WRITE, o, sizeof(*o)) ||
305 (__put_user(i->it_interval.tv_sec, &o->it_interval.tv_sec) |
306 __put_user(i->it_interval.tv_usec, &o->it_interval.tv_usec) |
307 __put_user(i->it_value.tv_sec, &o->it_value.tv_sec) |
308 __put_user(i->it_value.tv_usec, &o->it_value.tv_usec)));
309}
310
Al Viro37784072012-12-24 17:28:40 -0500311COMPAT_SYSCALL_DEFINE2(getitimer, int, which,
312 struct compat_itimerval __user *, it)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313{
314 struct itimerval kit;
315 int error;
316
317 error = do_getitimer(which, &kit);
318 if (!error && put_compat_itimerval(it, &kit))
319 error = -EFAULT;
320 return error;
321}
322
Al Viro37784072012-12-24 17:28:40 -0500323COMPAT_SYSCALL_DEFINE3(setitimer, int, which,
324 struct compat_itimerval __user *, in,
325 struct compat_itimerval __user *, out)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326{
327 struct itimerval kin, kout;
328 int error;
329
330 if (in) {
331 if (get_compat_itimerval(&kin, in))
332 return -EFAULT;
333 } else
334 memset(&kin, 0, sizeof(kin));
335
336 error = do_setitimer(which, &kin, out ? &kout : NULL);
337 if (error || !out)
338 return error;
339 if (put_compat_itimerval(out, &kout))
340 return -EFAULT;
341 return 0;
342}
343
Frank Mayharf06febc2008-09-12 09:54:39 -0700344static compat_clock_t clock_t_to_compat_clock_t(clock_t x)
345{
346 return compat_jiffies_to_clock_t(clock_t_to_jiffies(x));
347}
348
Heiko Carstens62a6fa92014-03-03 16:11:13 +0100349COMPAT_SYSCALL_DEFINE1(times, struct compat_tms __user *, tbuf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 if (tbuf) {
Frank Mayharf06febc2008-09-12 09:54:39 -0700352 struct tms tms;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353 struct compat_tms tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354
Frank Mayharf06febc2008-09-12 09:54:39 -0700355 do_sys_times(&tms);
356 /* Convert our struct tms to the compat version. */
357 tmp.tms_utime = clock_t_to_compat_clock_t(tms.tms_utime);
358 tmp.tms_stime = clock_t_to_compat_clock_t(tms.tms_stime);
359 tmp.tms_cutime = clock_t_to_compat_clock_t(tms.tms_cutime);
360 tmp.tms_cstime = clock_t_to_compat_clock_t(tms.tms_cstime);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361 if (copy_to_user(tbuf, &tmp, sizeof(tmp)))
362 return -EFAULT;
363 }
Paul Mackerrase3d5a272009-01-06 14:41:02 -0800364 force_successful_syscall_return();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365 return compat_jiffies_to_clock_t(jiffies);
366}
367
Chris Metcalfbe84cb42011-05-09 13:12:30 -0400368#ifdef __ARCH_WANT_SYS_SIGPENDING
369
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370/*
371 * Assumption: old_sigset_t and compat_old_sigset_t are both
372 * types that can be passed to put_user()/get_user().
373 */
374
Heiko Carstens62a6fa92014-03-03 16:11:13 +0100375COMPAT_SYSCALL_DEFINE1(sigpending, compat_old_sigset_t __user *, set)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376{
377 old_sigset_t s;
378 long ret;
379 mm_segment_t old_fs = get_fs();
380
381 set_fs(KERNEL_DS);
382 ret = sys_sigpending((old_sigset_t __user *) &s);
383 set_fs(old_fs);
384 if (ret == 0)
385 ret = put_user(s, set);
386 return ret;
387}
388
Chris Metcalfbe84cb42011-05-09 13:12:30 -0400389#endif
390
391#ifdef __ARCH_WANT_SYS_SIGPROCMASK
392
Jan Kiszkab7dafa02012-05-10 10:04:36 -0300393/*
394 * sys_sigprocmask SIG_SETMASK sets the first (compat) word of the
395 * blocked set of signals to the supplied signal set
396 */
397static inline void compat_sig_setmask(sigset_t *blocked, compat_sigset_word set)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398{
Jan Kiszkab7dafa02012-05-10 10:04:36 -0300399 memcpy(blocked->sig, &set, sizeof(set));
400}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401
Al Viro5cf22102012-11-25 19:41:01 -0500402COMPAT_SYSCALL_DEFINE3(sigprocmask, int, how,
403 compat_old_sigset_t __user *, nset,
404 compat_old_sigset_t __user *, oset)
Jan Kiszkab7dafa02012-05-10 10:04:36 -0300405{
406 old_sigset_t old_set, new_set;
407 sigset_t new_blocked;
408
409 old_set = current->blocked.sig[0];
410
411 if (nset) {
412 if (get_user(new_set, nset))
413 return -EFAULT;
414 new_set &= ~(sigmask(SIGKILL) | sigmask(SIGSTOP));
415
416 new_blocked = current->blocked;
417
418 switch (how) {
419 case SIG_BLOCK:
420 sigaddsetmask(&new_blocked, new_set);
421 break;
422 case SIG_UNBLOCK:
423 sigdelsetmask(&new_blocked, new_set);
424 break;
425 case SIG_SETMASK:
426 compat_sig_setmask(&new_blocked, new_set);
427 break;
428 default:
429 return -EINVAL;
430 }
431
432 set_current_blocked(&new_blocked);
433 }
434
435 if (oset) {
436 if (put_user(old_set, oset))
437 return -EFAULT;
438 }
439
440 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441}
442
Chris Metcalfbe84cb42011-05-09 13:12:30 -0400443#endif
444
Heiko Carstens62a6fa92014-03-03 16:11:13 +0100445COMPAT_SYSCALL_DEFINE2(setrlimit, unsigned int, resource,
446 struct compat_rlimit __user *, rlim)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447{
448 struct rlimit r;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449
450 if (!access_ok(VERIFY_READ, rlim, sizeof(*rlim)) ||
451 __get_user(r.rlim_cur, &rlim->rlim_cur) ||
452 __get_user(r.rlim_max, &rlim->rlim_max))
453 return -EFAULT;
454
455 if (r.rlim_cur == COMPAT_RLIM_INFINITY)
456 r.rlim_cur = RLIM_INFINITY;
457 if (r.rlim_max == COMPAT_RLIM_INFINITY)
458 r.rlim_max = RLIM_INFINITY;
Jiri Slabyb9518342010-05-04 11:28:25 +0200459 return do_prlimit(current, resource, &r, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460}
461
462#ifdef COMPAT_RLIM_OLD_INFINITY
463
Heiko Carstens62a6fa92014-03-03 16:11:13 +0100464COMPAT_SYSCALL_DEFINE2(old_getrlimit, unsigned int, resource,
465 struct compat_rlimit __user *, rlim)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466{
467 struct rlimit r;
468 int ret;
469 mm_segment_t old_fs = get_fs();
470
471 set_fs(KERNEL_DS);
H. Peter Anvindce44e02014-02-02 17:57:28 -0800472 ret = sys_old_getrlimit(resource, (struct rlimit __user *)&r);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473 set_fs(old_fs);
474
475 if (!ret) {
476 if (r.rlim_cur > COMPAT_RLIM_OLD_INFINITY)
477 r.rlim_cur = COMPAT_RLIM_INFINITY;
478 if (r.rlim_max > COMPAT_RLIM_OLD_INFINITY)
479 r.rlim_max = COMPAT_RLIM_INFINITY;
480
481 if (!access_ok(VERIFY_WRITE, rlim, sizeof(*rlim)) ||
482 __put_user(r.rlim_cur, &rlim->rlim_cur) ||
483 __put_user(r.rlim_max, &rlim->rlim_max))
484 return -EFAULT;
485 }
486 return ret;
487}
488
489#endif
490
Heiko Carstens62a6fa92014-03-03 16:11:13 +0100491COMPAT_SYSCALL_DEFINE2(getrlimit, unsigned int, resource,
492 struct compat_rlimit __user *, rlim)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493{
494 struct rlimit r;
495 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496
Jiri Slabyb9518342010-05-04 11:28:25 +0200497 ret = do_prlimit(current, resource, NULL, &r);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498 if (!ret) {
499 if (r.rlim_cur > COMPAT_RLIM_INFINITY)
500 r.rlim_cur = COMPAT_RLIM_INFINITY;
501 if (r.rlim_max > COMPAT_RLIM_INFINITY)
502 r.rlim_max = COMPAT_RLIM_INFINITY;
503
504 if (!access_ok(VERIFY_WRITE, rlim, sizeof(*rlim)) ||
505 __put_user(r.rlim_cur, &rlim->rlim_cur) ||
506 __put_user(r.rlim_max, &rlim->rlim_max))
507 return -EFAULT;
508 }
509 return ret;
510}
511
512int put_compat_rusage(const struct rusage *r, struct compat_rusage __user *ru)
513{
514 if (!access_ok(VERIFY_WRITE, ru, sizeof(*ru)) ||
515 __put_user(r->ru_utime.tv_sec, &ru->ru_utime.tv_sec) ||
516 __put_user(r->ru_utime.tv_usec, &ru->ru_utime.tv_usec) ||
517 __put_user(r->ru_stime.tv_sec, &ru->ru_stime.tv_sec) ||
518 __put_user(r->ru_stime.tv_usec, &ru->ru_stime.tv_usec) ||
519 __put_user(r->ru_maxrss, &ru->ru_maxrss) ||
520 __put_user(r->ru_ixrss, &ru->ru_ixrss) ||
521 __put_user(r->ru_idrss, &ru->ru_idrss) ||
522 __put_user(r->ru_isrss, &ru->ru_isrss) ||
523 __put_user(r->ru_minflt, &ru->ru_minflt) ||
524 __put_user(r->ru_majflt, &ru->ru_majflt) ||
525 __put_user(r->ru_nswap, &ru->ru_nswap) ||
526 __put_user(r->ru_inblock, &ru->ru_inblock) ||
527 __put_user(r->ru_oublock, &ru->ru_oublock) ||
528 __put_user(r->ru_msgsnd, &ru->ru_msgsnd) ||
529 __put_user(r->ru_msgrcv, &ru->ru_msgrcv) ||
530 __put_user(r->ru_nsignals, &ru->ru_nsignals) ||
531 __put_user(r->ru_nvcsw, &ru->ru_nvcsw) ||
532 __put_user(r->ru_nivcsw, &ru->ru_nivcsw))
533 return -EFAULT;
534 return 0;
535}
536
Al Viro8d9807b2012-12-23 14:56:40 -0500537COMPAT_SYSCALL_DEFINE4(wait4,
538 compat_pid_t, pid,
539 compat_uint_t __user *, stat_addr,
540 int, options,
541 struct compat_rusage __user *, ru)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542{
543 if (!ru) {
544 return sys_wait4(pid, stat_addr, options, NULL);
545 } else {
546 struct rusage r;
547 int ret;
548 unsigned int status;
549 mm_segment_t old_fs = get_fs();
550
551 set_fs (KERNEL_DS);
552 ret = sys_wait4(pid,
553 (stat_addr ?
554 (unsigned int __user *) &status : NULL),
555 options, (struct rusage __user *) &r);
556 set_fs (old_fs);
557
558 if (ret > 0) {
559 if (put_compat_rusage(&r, ru))
560 return -EFAULT;
561 if (stat_addr && put_user(status, stat_addr))
562 return -EFAULT;
563 }
564 return ret;
565 }
566}
567
Al Viro8d9807b2012-12-23 14:56:40 -0500568COMPAT_SYSCALL_DEFINE5(waitid,
569 int, which, compat_pid_t, pid,
570 struct compat_siginfo __user *, uinfo, int, options,
571 struct compat_rusage __user *, uru)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572{
573 siginfo_t info;
574 struct rusage ru;
575 long ret;
576 mm_segment_t old_fs = get_fs();
577
578 memset(&info, 0, sizeof(info));
579
580 set_fs(KERNEL_DS);
581 ret = sys_waitid(which, pid, (siginfo_t __user *)&info, options,
582 uru ? (struct rusage __user *)&ru : NULL);
583 set_fs(old_fs);
584
585 if ((ret < 0) || (info.si_signo == 0))
586 return ret;
587
588 if (uru) {
Al Viroa566c282012-12-23 23:14:49 -0500589 /* sys_waitid() overwrites everything in ru */
590 if (COMPAT_USE_64BIT_TIME)
591 ret = copy_to_user(uru, &ru, sizeof(ru));
592 else
593 ret = put_compat_rusage(&ru, uru);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594 if (ret)
Dan Carpenterbffea772013-02-21 16:41:57 -0800595 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596 }
597
598 BUG_ON(info.si_code & __SI_MASK);
599 info.si_code |= __SI_CHLD;
600 return copy_siginfo_to_user32(uinfo, &info);
601}
602
603static int compat_get_user_cpu_mask(compat_ulong_t __user *user_mask_ptr,
Rusty Russella45185d2009-01-01 10:12:24 +1030604 unsigned len, struct cpumask *new_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605{
606 unsigned long *k;
607
Rusty Russella45185d2009-01-01 10:12:24 +1030608 if (len < cpumask_size())
609 memset(new_mask, 0, cpumask_size());
610 else if (len > cpumask_size())
611 len = cpumask_size();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612
Rusty Russella45185d2009-01-01 10:12:24 +1030613 k = cpumask_bits(new_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614 return compat_get_bitmap(k, user_mask_ptr, len * 8);
615}
616
Heiko Carstens62a6fa92014-03-03 16:11:13 +0100617COMPAT_SYSCALL_DEFINE3(sched_setaffinity, compat_pid_t, pid,
618 unsigned int, len,
619 compat_ulong_t __user *, user_mask_ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620{
Rusty Russella45185d2009-01-01 10:12:24 +1030621 cpumask_var_t new_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622 int retval;
623
Rusty Russella45185d2009-01-01 10:12:24 +1030624 if (!alloc_cpumask_var(&new_mask, GFP_KERNEL))
625 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626
Rusty Russella45185d2009-01-01 10:12:24 +1030627 retval = compat_get_user_cpu_mask(user_mask_ptr, len, new_mask);
628 if (retval)
629 goto out;
630
631 retval = sched_setaffinity(pid, new_mask);
632out:
633 free_cpumask_var(new_mask);
634 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635}
636
Heiko Carstens62a6fa92014-03-03 16:11:13 +0100637COMPAT_SYSCALL_DEFINE3(sched_getaffinity, compat_pid_t, pid, unsigned int, len,
638 compat_ulong_t __user *, user_mask_ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639{
640 int ret;
Rusty Russella45185d2009-01-01 10:12:24 +1030641 cpumask_var_t mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642
KOSAKI Motohirofa9dc262010-05-19 09:37:41 +0900643 if ((len * BITS_PER_BYTE) < nr_cpu_ids)
644 return -EINVAL;
645 if (len & (sizeof(compat_ulong_t)-1))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646 return -EINVAL;
647
Rusty Russella45185d2009-01-01 10:12:24 +1030648 if (!alloc_cpumask_var(&mask, GFP_KERNEL))
649 return -ENOMEM;
650
651 ret = sched_getaffinity(pid, mask);
KOSAKI Motohirofa9dc262010-05-19 09:37:41 +0900652 if (ret == 0) {
653 size_t retlen = min_t(size_t, len, cpumask_size());
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654
KOSAKI Motohirofa9dc262010-05-19 09:37:41 +0900655 if (compat_put_bitmap(user_mask_ptr, cpumask_bits(mask), retlen * 8))
656 ret = -EFAULT;
657 else
658 ret = retlen;
659 }
Rusty Russella45185d2009-01-01 10:12:24 +1030660 free_cpumask_var(mask);
KOSAKI Motohirofa9dc262010-05-19 09:37:41 +0900661
Rusty Russella45185d2009-01-01 10:12:24 +1030662 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663}
664
Davide Libenzi83f5d122007-05-10 22:23:18 -0700665int get_compat_itimerspec(struct itimerspec *dst,
666 const struct compat_itimerspec __user *src)
Daniel Walkerbd3a8492007-10-18 03:06:09 -0700667{
H. Peter Anvin81993e82014-02-01 18:54:11 -0800668 if (__compat_get_timespec(&dst->it_interval, &src->it_interval) ||
669 __compat_get_timespec(&dst->it_value, &src->it_value))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670 return -EFAULT;
671 return 0;
Daniel Walkerbd3a8492007-10-18 03:06:09 -0700672}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673
Davide Libenzi83f5d122007-05-10 22:23:18 -0700674int put_compat_itimerspec(struct compat_itimerspec __user *dst,
675 const struct itimerspec *src)
Daniel Walkerbd3a8492007-10-18 03:06:09 -0700676{
H. Peter Anvin81993e82014-02-01 18:54:11 -0800677 if (__compat_put_timespec(&src->it_interval, &dst->it_interval) ||
678 __compat_put_timespec(&src->it_value, &dst->it_value))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679 return -EFAULT;
680 return 0;
Daniel Walkerbd3a8492007-10-18 03:06:09 -0700681}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682
Heiko Carstens62a6fa92014-03-03 16:11:13 +0100683COMPAT_SYSCALL_DEFINE3(timer_create, clockid_t, which_clock,
684 struct compat_sigevent __user *, timer_event_spec,
685 timer_t __user *, created_timer_id)
Christoph Hellwig3a0f69d2006-01-09 20:52:08 -0800686{
687 struct sigevent __user *event = NULL;
688
689 if (timer_event_spec) {
690 struct sigevent kevent;
691
692 event = compat_alloc_user_space(sizeof(*event));
693 if (get_compat_sigevent(&kevent, timer_event_spec) ||
694 copy_to_user(event, &kevent, sizeof(*event)))
695 return -EFAULT;
696 }
697
698 return sys_timer_create(which_clock, event, created_timer_id);
699}
700
Heiko Carstens62a6fa92014-03-03 16:11:13 +0100701COMPAT_SYSCALL_DEFINE4(timer_settime, timer_t, timer_id, int, flags,
702 struct compat_itimerspec __user *, new,
703 struct compat_itimerspec __user *, old)
Daniel Walkerbd3a8492007-10-18 03:06:09 -0700704{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705 long err;
706 mm_segment_t oldfs;
707 struct itimerspec newts, oldts;
708
709 if (!new)
710 return -EINVAL;
711 if (get_compat_itimerspec(&newts, new))
Daniel Walkerbd3a8492007-10-18 03:06:09 -0700712 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713 oldfs = get_fs();
714 set_fs(KERNEL_DS);
715 err = sys_timer_settime(timer_id, flags,
716 (struct itimerspec __user *) &newts,
717 (struct itimerspec __user *) &oldts);
Daniel Walkerbd3a8492007-10-18 03:06:09 -0700718 set_fs(oldfs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719 if (!err && old && put_compat_itimerspec(old, &oldts))
720 return -EFAULT;
721 return err;
Daniel Walkerbd3a8492007-10-18 03:06:09 -0700722}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723
Heiko Carstens62a6fa92014-03-03 16:11:13 +0100724COMPAT_SYSCALL_DEFINE2(timer_gettime, timer_t, timer_id,
725 struct compat_itimerspec __user *, setting)
Daniel Walkerbd3a8492007-10-18 03:06:09 -0700726{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727 long err;
728 mm_segment_t oldfs;
Daniel Walkerbd3a8492007-10-18 03:06:09 -0700729 struct itimerspec ts;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730
731 oldfs = get_fs();
732 set_fs(KERNEL_DS);
733 err = sys_timer_gettime(timer_id,
Daniel Walkerbd3a8492007-10-18 03:06:09 -0700734 (struct itimerspec __user *) &ts);
735 set_fs(oldfs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736 if (!err && put_compat_itimerspec(setting, &ts))
737 return -EFAULT;
738 return err;
Daniel Walkerbd3a8492007-10-18 03:06:09 -0700739}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740
Heiko Carstens62a6fa92014-03-03 16:11:13 +0100741COMPAT_SYSCALL_DEFINE2(clock_settime, clockid_t, which_clock,
742 struct compat_timespec __user *, tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743{
744 long err;
745 mm_segment_t oldfs;
Daniel Walkerbd3a8492007-10-18 03:06:09 -0700746 struct timespec ts;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747
H. Peter Anvin81993e82014-02-01 18:54:11 -0800748 if (compat_get_timespec(&ts, tp))
Daniel Walkerbd3a8492007-10-18 03:06:09 -0700749 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750 oldfs = get_fs();
Daniel Walkerbd3a8492007-10-18 03:06:09 -0700751 set_fs(KERNEL_DS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752 err = sys_clock_settime(which_clock,
753 (struct timespec __user *) &ts);
754 set_fs(oldfs);
755 return err;
Daniel Walkerbd3a8492007-10-18 03:06:09 -0700756}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757
Heiko Carstens62a6fa92014-03-03 16:11:13 +0100758COMPAT_SYSCALL_DEFINE2(clock_gettime, clockid_t, which_clock,
759 struct compat_timespec __user *, tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760{
761 long err;
762 mm_segment_t oldfs;
Daniel Walkerbd3a8492007-10-18 03:06:09 -0700763 struct timespec ts;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764
765 oldfs = get_fs();
766 set_fs(KERNEL_DS);
767 err = sys_clock_gettime(which_clock,
768 (struct timespec __user *) &ts);
769 set_fs(oldfs);
H. Peter Anvin81993e82014-02-01 18:54:11 -0800770 if (!err && compat_put_timespec(&ts, tp))
Daniel Walkerbd3a8492007-10-18 03:06:09 -0700771 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772 return err;
Daniel Walkerbd3a8492007-10-18 03:06:09 -0700773}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774
Heiko Carstens62a6fa92014-03-03 16:11:13 +0100775COMPAT_SYSCALL_DEFINE2(clock_adjtime, clockid_t, which_clock,
776 struct compat_timex __user *, utp)
Richard Cochranf1f1d5e2011-02-01 13:52:26 +0000777{
778 struct timex txc;
779 mm_segment_t oldfs;
780 int err, ret;
781
782 err = compat_get_timex(&txc, utp);
783 if (err)
784 return err;
785
786 oldfs = get_fs();
787 set_fs(KERNEL_DS);
788 ret = sys_clock_adjtime(which_clock, (struct timex __user *) &txc);
789 set_fs(oldfs);
790
791 err = compat_put_timex(utp, &txc);
792 if (err)
793 return err;
794
795 return ret;
796}
797
Heiko Carstens62a6fa92014-03-03 16:11:13 +0100798COMPAT_SYSCALL_DEFINE2(clock_getres, clockid_t, which_clock,
799 struct compat_timespec __user *, tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800{
801 long err;
802 mm_segment_t oldfs;
Daniel Walkerbd3a8492007-10-18 03:06:09 -0700803 struct timespec ts;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804
805 oldfs = get_fs();
806 set_fs(KERNEL_DS);
807 err = sys_clock_getres(which_clock,
808 (struct timespec __user *) &ts);
809 set_fs(oldfs);
H. Peter Anvin81993e82014-02-01 18:54:11 -0800810 if (!err && tp && compat_put_timespec(&ts, tp))
Daniel Walkerbd3a8492007-10-18 03:06:09 -0700811 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812 return err;
Daniel Walkerbd3a8492007-10-18 03:06:09 -0700813}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814
Toyo Abe1711ef32006-09-29 02:00:28 -0700815static long compat_clock_nanosleep_restart(struct restart_block *restart)
816{
817 long err;
818 mm_segment_t oldfs;
819 struct timespec tu;
H. Peter Anvindce44e02014-02-02 17:57:28 -0800820 struct compat_timespec __user *rmtp = restart->nanosleep.compat_rmtp;
Toyo Abe1711ef32006-09-29 02:00:28 -0700821
Thomas Gleixner029a07e2008-02-10 09:17:43 +0100822 restart->nanosleep.rmtp = (struct timespec __user *) &tu;
Toyo Abe1711ef32006-09-29 02:00:28 -0700823 oldfs = get_fs();
824 set_fs(KERNEL_DS);
825 err = clock_nanosleep_restart(restart);
826 set_fs(oldfs);
827
828 if ((err == -ERESTART_RESTARTBLOCK) && rmtp &&
H. Peter Anvin81993e82014-02-01 18:54:11 -0800829 compat_put_timespec(&tu, rmtp))
Toyo Abe1711ef32006-09-29 02:00:28 -0700830 return -EFAULT;
831
832 if (err == -ERESTART_RESTARTBLOCK) {
833 restart->fn = compat_clock_nanosleep_restart;
Thomas Gleixner029a07e2008-02-10 09:17:43 +0100834 restart->nanosleep.compat_rmtp = rmtp;
Toyo Abe1711ef32006-09-29 02:00:28 -0700835 }
836 return err;
837}
838
Heiko Carstens62a6fa92014-03-03 16:11:13 +0100839COMPAT_SYSCALL_DEFINE4(clock_nanosleep, clockid_t, which_clock, int, flags,
840 struct compat_timespec __user *, rqtp,
841 struct compat_timespec __user *, rmtp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842{
843 long err;
844 mm_segment_t oldfs;
Daniel Walkerbd3a8492007-10-18 03:06:09 -0700845 struct timespec in, out;
Toyo Abe1711ef32006-09-29 02:00:28 -0700846 struct restart_block *restart;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847
H. Peter Anvin81993e82014-02-01 18:54:11 -0800848 if (compat_get_timespec(&in, rqtp))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849 return -EFAULT;
850
851 oldfs = get_fs();
852 set_fs(KERNEL_DS);
853 err = sys_clock_nanosleep(which_clock, flags,
854 (struct timespec __user *) &in,
855 (struct timespec __user *) &out);
856 set_fs(oldfs);
Toyo Abe1711ef32006-09-29 02:00:28 -0700857
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858 if ((err == -ERESTART_RESTARTBLOCK) && rmtp &&
H. Peter Anvin81993e82014-02-01 18:54:11 -0800859 compat_put_timespec(&out, rmtp))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860 return -EFAULT;
Toyo Abe1711ef32006-09-29 02:00:28 -0700861
862 if (err == -ERESTART_RESTARTBLOCK) {
863 restart = &current_thread_info()->restart_block;
864 restart->fn = compat_clock_nanosleep_restart;
Thomas Gleixner029a07e2008-02-10 09:17:43 +0100865 restart->nanosleep.compat_rmtp = rmtp;
Toyo Abe1711ef32006-09-29 02:00:28 -0700866 }
Daniel Walkerbd3a8492007-10-18 03:06:09 -0700867 return err;
868}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869
870/*
871 * We currently only need the following fields from the sigevent
872 * structure: sigev_value, sigev_signo, sig_notify and (sometimes
873 * sigev_notify_thread_id). The others are handled in user mode.
874 * We also assume that copying sigev_value.sival_int is sufficient
875 * to keep all the bits of sigev_value.sival_ptr intact.
876 */
877int get_compat_sigevent(struct sigevent *event,
878 const struct compat_sigevent __user *u_event)
879{
David S. Miller51410d32005-04-16 15:24:01 -0700880 memset(event, 0, sizeof(*event));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881 return (!access_ok(VERIFY_READ, u_event, sizeof(*u_event)) ||
882 __get_user(event->sigev_value.sival_int,
883 &u_event->sigev_value.sival_int) ||
884 __get_user(event->sigev_signo, &u_event->sigev_signo) ||
885 __get_user(event->sigev_notify, &u_event->sigev_notify) ||
886 __get_user(event->sigev_notify_thread_id,
887 &u_event->sigev_notify_thread_id))
888 ? -EFAULT : 0;
889}
890
Stephen Rothwell5fa38392006-10-28 10:38:46 -0700891long compat_get_bitmap(unsigned long *mask, const compat_ulong_t __user *umask,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892 unsigned long bitmap_size)
893{
894 int i, j;
895 unsigned long m;
896 compat_ulong_t um;
897 unsigned long nr_compat_longs;
898
899 /* align bitmap up to nearest compat_long_t boundary */
900 bitmap_size = ALIGN(bitmap_size, BITS_PER_COMPAT_LONG);
901
902 if (!access_ok(VERIFY_READ, umask, bitmap_size / 8))
903 return -EFAULT;
904
905 nr_compat_longs = BITS_TO_COMPAT_LONGS(bitmap_size);
906
907 for (i = 0; i < BITS_TO_LONGS(bitmap_size); i++) {
908 m = 0;
909
910 for (j = 0; j < sizeof(m)/sizeof(um); j++) {
911 /*
912 * We dont want to read past the end of the userspace
913 * bitmap. We must however ensure the end of the
914 * kernel bitmap is zeroed.
915 */
916 if (nr_compat_longs-- > 0) {
917 if (__get_user(um, umask))
918 return -EFAULT;
919 } else {
920 um = 0;
921 }
922
923 umask++;
924 m |= (long)um << (j * BITS_PER_COMPAT_LONG);
925 }
926 *mask++ = m;
927 }
928
929 return 0;
930}
931
932long compat_put_bitmap(compat_ulong_t __user *umask, unsigned long *mask,
933 unsigned long bitmap_size)
934{
935 int i, j;
936 unsigned long m;
937 compat_ulong_t um;
938 unsigned long nr_compat_longs;
939
940 /* align bitmap up to nearest compat_long_t boundary */
941 bitmap_size = ALIGN(bitmap_size, BITS_PER_COMPAT_LONG);
942
943 if (!access_ok(VERIFY_WRITE, umask, bitmap_size / 8))
944 return -EFAULT;
945
946 nr_compat_longs = BITS_TO_COMPAT_LONGS(bitmap_size);
947
948 for (i = 0; i < BITS_TO_LONGS(bitmap_size); i++) {
949 m = *mask++;
950
951 for (j = 0; j < sizeof(m)/sizeof(um); j++) {
952 um = m;
953
954 /*
955 * We dont want to write past the end of the userspace
956 * bitmap.
957 */
958 if (nr_compat_longs-- > 0) {
959 if (__put_user(um, umask))
960 return -EFAULT;
961 }
962
963 umask++;
964 m >>= 4*sizeof(um);
965 m >>= 4*sizeof(um);
966 }
967 }
968
969 return 0;
970}
971
972void
Al Viro322a56c2012-12-25 13:32:58 -0500973sigset_from_compat(sigset_t *set, const compat_sigset_t *compat)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974{
975 switch (_NSIG_WORDS) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976 case 4: set->sig[3] = compat->sig[6] | (((long)compat->sig[7]) << 32 );
977 case 3: set->sig[2] = compat->sig[4] | (((long)compat->sig[5]) << 32 );
978 case 2: set->sig[1] = compat->sig[2] | (((long)compat->sig[3]) << 32 );
979 case 1: set->sig[0] = compat->sig[0] | (((long)compat->sig[1]) << 32 );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980 }
981}
Alexander Graf1dda6062011-06-08 02:45:37 +0200982EXPORT_SYMBOL_GPL(sigset_from_compat);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983
Al Viro322a56c2012-12-25 13:32:58 -0500984void
985sigset_to_compat(compat_sigset_t *compat, const sigset_t *set)
986{
987 switch (_NSIG_WORDS) {
988 case 4: compat->sig[7] = (set->sig[3] >> 32); compat->sig[6] = set->sig[3];
989 case 3: compat->sig[5] = (set->sig[2] >> 32); compat->sig[4] = set->sig[2];
990 case 2: compat->sig[3] = (set->sig[1] >> 32); compat->sig[2] = set->sig[1];
991 case 1: compat->sig[1] = (set->sig[0] >> 32); compat->sig[0] = set->sig[0];
992 }
993}
994
Al Viro28d27f22012-11-25 19:32:25 -0500995COMPAT_SYSCALL_DEFINE4(rt_sigtimedwait, compat_sigset_t __user *, uthese,
996 struct compat_siginfo __user *, uinfo,
997 struct compat_timespec __user *, uts, compat_size_t, sigsetsize)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998{
999 compat_sigset_t s32;
1000 sigset_t s;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001 struct timespec t;
1002 siginfo_t info;
Oleg Nesterov943df142011-04-27 21:44:14 +02001003 long ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004
1005 if (sigsetsize != sizeof(sigset_t))
1006 return -EINVAL;
1007
1008 if (copy_from_user(&s32, uthese, sizeof(compat_sigset_t)))
1009 return -EFAULT;
1010 sigset_from_compat(&s, &s32);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011
1012 if (uts) {
Al Virob2ddedc2012-12-24 12:31:00 -05001013 if (compat_get_timespec(&t, uts))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015 }
1016
Oleg Nesterov943df142011-04-27 21:44:14 +02001017 ret = do_sigtimedwait(&s, &info, uts ? &t : NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018
Oleg Nesterov943df142011-04-27 21:44:14 +02001019 if (ret > 0 && uinfo) {
1020 if (copy_siginfo_to_user32(uinfo, &info))
1021 ret = -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024 return ret;
Thomas Gleixner62ab4502009-04-04 21:01:06 +00001025}
1026
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027#ifdef __ARCH_WANT_COMPAT_SYS_TIME
1028
1029/* compat_time_t is a 32 bit "long" and needs to get converted. */
1030
Heiko Carstens62a6fa92014-03-03 16:11:13 +01001031COMPAT_SYSCALL_DEFINE1(time, compat_time_t __user *, tloc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032{
1033 compat_time_t i;
1034 struct timeval tv;
1035
1036 do_gettimeofday(&tv);
1037 i = tv.tv_sec;
1038
1039 if (tloc) {
1040 if (put_user(i,tloc))
Paul Mackerrase3d5a272009-01-06 14:41:02 -08001041 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042 }
Paul Mackerrase3d5a272009-01-06 14:41:02 -08001043 force_successful_syscall_return();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044 return i;
1045}
1046
Heiko Carstens62a6fa92014-03-03 16:11:13 +01001047COMPAT_SYSCALL_DEFINE1(stime, compat_time_t __user *, tptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048{
1049 struct timespec tv;
1050 int err;
1051
1052 if (get_user(tv.tv_sec, tptr))
1053 return -EFAULT;
1054
1055 tv.tv_nsec = 0;
1056
1057 err = security_settime(&tv, NULL);
1058 if (err)
1059 return err;
1060
1061 do_settimeofday(&tv);
1062 return 0;
1063}
1064
1065#endif /* __ARCH_WANT_COMPAT_SYS_TIME */
David Woodhouse150256d2006-01-18 17:43:57 -08001066
Heiko Carstens62a6fa92014-03-03 16:11:13 +01001067COMPAT_SYSCALL_DEFINE1(adjtimex, struct compat_timex __user *, utp)
Stephen Rothwell3158e942006-03-26 01:37:29 -08001068{
1069 struct timex txc;
Richard Cochran65f5d802011-02-01 13:52:23 +00001070 int err, ret;
Stephen Rothwell3158e942006-03-26 01:37:29 -08001071
Richard Cochran65f5d802011-02-01 13:52:23 +00001072 err = compat_get_timex(&txc, utp);
1073 if (err)
1074 return err;
Stephen Rothwell3158e942006-03-26 01:37:29 -08001075
1076 ret = do_adjtimex(&txc);
1077
Richard Cochran65f5d802011-02-01 13:52:23 +00001078 err = compat_put_timex(utp, &txc);
1079 if (err)
1080 return err;
Stephen Rothwell3158e942006-03-26 01:37:29 -08001081
1082 return ret;
1083}
Christoph Lameter1b2db9f2006-06-23 02:03:56 -07001084
1085#ifdef CONFIG_NUMA
Heiko Carstens2f2728f2014-03-04 17:18:23 +01001086COMPAT_SYSCALL_DEFINE6(move_pages, pid_t, pid, compat_ulong_t, nr_pages,
1087 compat_uptr_t __user *, pages32,
1088 const int __user *, nodes,
1089 int __user *, status,
1090 int, flags)
Christoph Lameter1b2db9f2006-06-23 02:03:56 -07001091{
1092 const void __user * __user *pages;
1093 int i;
1094
1095 pages = compat_alloc_user_space(nr_pages * sizeof(void *));
1096 for (i = 0; i < nr_pages; i++) {
1097 compat_uptr_t p;
1098
Christoph Lameter9216dfa2006-06-23 02:03:57 -07001099 if (get_user(p, pages32 + i) ||
Christoph Lameter1b2db9f2006-06-23 02:03:56 -07001100 put_user(compat_ptr(p), pages + i))
1101 return -EFAULT;
1102 }
1103 return sys_move_pages(pid, nr_pages, pages, nodes, status, flags);
1104}
Stephen Rothwell3fd59392006-11-02 22:07:24 -08001105
Heiko Carstens62a6fa92014-03-03 16:11:13 +01001106COMPAT_SYSCALL_DEFINE4(migrate_pages, compat_pid_t, pid,
1107 compat_ulong_t, maxnode,
1108 const compat_ulong_t __user *, old_nodes,
1109 const compat_ulong_t __user *, new_nodes)
Stephen Rothwell3fd59392006-11-02 22:07:24 -08001110{
1111 unsigned long __user *old = NULL;
1112 unsigned long __user *new = NULL;
1113 nodemask_t tmp_mask;
1114 unsigned long nr_bits;
1115 unsigned long size;
1116
1117 nr_bits = min_t(unsigned long, maxnode - 1, MAX_NUMNODES);
1118 size = ALIGN(nr_bits, BITS_PER_LONG) / 8;
1119 if (old_nodes) {
1120 if (compat_get_bitmap(nodes_addr(tmp_mask), old_nodes, nr_bits))
1121 return -EFAULT;
1122 old = compat_alloc_user_space(new_nodes ? size * 2 : size);
1123 if (new_nodes)
1124 new = old + size / sizeof(unsigned long);
1125 if (copy_to_user(old, nodes_addr(tmp_mask), size))
1126 return -EFAULT;
1127 }
1128 if (new_nodes) {
1129 if (compat_get_bitmap(nodes_addr(tmp_mask), new_nodes, nr_bits))
1130 return -EFAULT;
1131 if (new == NULL)
1132 new = compat_alloc_user_space(size);
1133 if (copy_to_user(new, nodes_addr(tmp_mask), size))
1134 return -EFAULT;
1135 }
1136 return sys_migrate_pages(pid, nr_bits + 1, old, new);
1137}
Christoph Lameter1b2db9f2006-06-23 02:03:56 -07001138#endif
Kyle McMartind4d23ad2007-02-10 01:46:00 -08001139
Al Viro6883da82012-12-25 16:59:28 -05001140COMPAT_SYSCALL_DEFINE2(sched_rr_get_interval,
1141 compat_pid_t, pid,
1142 struct compat_timespec __user *, interval)
Catalin Marinas0ad50c32012-12-17 16:01:45 -08001143{
1144 struct timespec t;
1145 int ret;
1146 mm_segment_t old_fs = get_fs();
1147
1148 set_fs(KERNEL_DS);
1149 ret = sys_sched_rr_get_interval(pid, (struct timespec __user *)&t);
1150 set_fs(old_fs);
H. Peter Anvin81993e82014-02-01 18:54:11 -08001151 if (compat_put_timespec(&t, interval))
Catalin Marinas0ad50c32012-12-17 16:01:45 -08001152 return -EFAULT;
1153 return ret;
1154}
Catalin Marinas0ad50c32012-12-17 16:01:45 -08001155
H. Peter Anvinc41d68a2010-09-07 16:16:18 -07001156/*
1157 * Allocate user-space memory for the duration of a single system call,
1158 * in order to marshall parameters inside a compat thunk.
1159 */
1160void __user *compat_alloc_user_space(unsigned long len)
1161{
1162 void __user *ptr;
1163
1164 /* If len would occupy more than half of the entire compat space... */
1165 if (unlikely(len > (((compat_uptr_t)~0) >> 1)))
1166 return NULL;
1167
1168 ptr = arch_compat_alloc_user_space(len);
1169
1170 if (unlikely(!access_ok(VERIFY_WRITE, ptr, len)))
1171 return NULL;
1172
1173 return ptr;
1174}
1175EXPORT_SYMBOL_GPL(compat_alloc_user_space);